Skip to main content
GET
/
v1
/
users
/
me
Get Current User
curl --request GET \
  --url https://api.aries.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "account_application": {
    "can_submit": true,
    "id": 123,
    "missing_fields": [
      "<string>"
    ],
    "plaid_link_token": "<string>",
    "status": "CREATED"
  },
  "avatar_url": "<string>",
  "country": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "email": "<string>",
  "email_verified": true,
  "id": 123,
  "plaid_status": "<string>",
  "primary_phone_number": "<string>",
  "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

User information retrieved successfully

account_application
object
avatar_url
string

User avatar URL or identifier

country
string

User's country

created_at
string<date-time>

Timestamp when user was created

email
string

User's email address

email_verified
boolean

Whether the email has been verified

id
integer<int64>

Unique user identifier

plaid_status
string

Status of Plaid integration

primary_phone_number
string

User's primary phone number

updated_at
string<date-time>

Timestamp when user was last updated