Skip to main content
GET
/
users
/
{id}
Retrieve User
curl --request GET \
  --url https://{defaultHost}/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "username": "<string>",
  "name": "<string>",
  "bio": "<string>",
  "created_at": "<string>",
  "profile_picture": {}
}

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-09"

Path Parameters

id
string
required

The ID of the user, which will look like user_*************, a username, or 'me'.

Query Parameters

account_id
string

When set, returns the user's account-specific profile overrides for this account.

Response

user retrieved

id
string
required

The ID of the user, which will look like user_*************

username
string
required

The user's unique username

name
string | null
required

The user's display name

bio
string | null
required

The user's biography

created_at
string
required

When the user was created, as an ISO 8601 timestamp

profile_picture
object
required

The user's profile picture, an object with a url