Skip to main content

User

Overview

Returns the profile of the authenticated user associated with the bearer token.

Endpoints

Get authenticated user

  • Method: GET
  • Path: /api/v1/user
  • Scope: user:read
  • Subscription: None (global endpoint)

Path parameters

None.

Query parameters

None.

Response 200

{
  "data": {
    "id": "u3Ab1",
    "avatar": "https://example.com/avatar.jpg",
    "first_name": "Alex",
    "job_title": "Product Manager",
    "last_name": "Rivera",
    "linkedin_url": "https://linkedin.com/in/alex",
    "email": "[email protected]",
    "created_at": "2025-01-15T10:30:00.000000+00:00"
  }
}

Response fields

FieldTypeDescription
idstringUser sqid
avatarstring|nullAvatar URL
first_namestringFirst name
job_titlestring|nullJob title
last_namestringLast name
linkedin_urlstring|nullLinkedIn profile URL
emailstringEmail address
created_atstringAccount creation timestamp

Errors

StatusWhen
401Missing or invalid token
403Token missing user:read scope