Skip to main content
GET
/
api
/
v1
/
auth
/
me
Get current user profile
curl --request GET \
  --url http://localhost:9001/api/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "user": {
    "id": "user-abc123-v1",
    "email": "user@example.com",
    "name": "John Doe",
    "profile_pic_url": "https://example.com/avatar.jpg",
    "status": "ACTIVE",
    "is_verified": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "account_id": "acct-xyz789-v1"
}

Authorizations

Authorization
string
header
required

JWT token from Auth0

Response

User profile retrieved successfully

user
object
account_id
string

Account external ID

Example:

"acct-xyz789-v1"