Skip to main content
GET
/
users
List Users
curl --request GET \
  --url https://{defaultHost}/users \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "username": "<string>",
      "name": "<string>",
      "bio": "<string>",
      "created_at": "<string>",
      "profile_picture": {}
    }
  ],
  "page_info": {
    "end_cursor": "<string>",
    "start_cursor": "<string>",
    "has_next_page": true,
    "has_previous_page": true
  }
}

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"

Query Parameters

query
string

A search term to filter users by name or username.

first
integer

The number of users to return (max 50).

after
string

A cursor; returns users after this position.

last
integer

The number of users to return from the end of the range.

before
string

A cursor; returns users before this position.

Response

users listed

data
object[]
required
page_info
object
required