Skip to main content
GET
/
v1
/
users
/
me
/
profile
Get User Profile
curl --request GET \
  --url https://api.aries.com/v1/users/me/profile \
  --header 'Authorization: Bearer <token>'
{
  "citizenship_country": "US",
  "email": "user@example.com",
  "first_name": "John",
  "gender": "Male",
  "id": 12345,
  "last_name": "Doe",
  "marital_status": "Single",
  "number_of_dependents": 0,
  "phone_number": "+1234567890"
}

Authorizations

Authorization
string
header
required

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

Response

User profile retrieved successfully

citizenship_country
string
Example:

"US"

email
string<email>
Example:

"user@example.com"

first_name
string
Example:

"John"

gender
string
Example:

"Male"

id
integer<int64>
Example:

12345

last_name
string
Example:

"Doe"

marital_status
string
Example:

"Single"

number_of_dependents
integer<int32>
Example:

0

phone_number
string
Example:

"+1234567890"