GET
/
v1
/
users
/
me
Get Current User
curl --request GET \
  --url https://api.tradearies.dev/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "email": "<string>",
  "country": "<string>",
  "plaid_status": "<string>",
  "account_application": {
    "id": 123,
    "status": "CREATED",
    "can_submit": true,
    "missing_fields": [
      "<string>"
    ],
    "plaid_link_token": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

User information retrieved successfully

The response is of type object.