Skip to main content
GET
/
me
Me
curl --request GET \
  --url https://api.example.com/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "locale": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "modified_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

OK

id
string
required

Unique resource identifier.

email
string
required

The (verified) email address of the user.

first_name
string | null
required

The first name of the user. Also referred to as the preferred name, as it can be the name the user wants to be called. It does not have to be the legal name.

last_name
string | null
required

The last name of the user.

locale
string
required

The locale of the user e.g 'en_GB' or 'en_US'.

created_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was created.

modified_at
string<date-time>
required

The timestamp (in ISO-8601 format) of when the resource was last modified.