Skip to main content

Users Endpoints

Endpoints for managing users within your workspace.

List Users

Retrieve all users in the workspace.
GET /api/v1/users
X-Api-Key
string
required
Your API key

Response

{
  "data": [
    {
      "id": "usr_123",
      "email": "user@example.com",
      "role": "admin",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ]
}

Get Current User

Retrieve the authenticated user’s profile.
GET /api/v1/users/me

Response

{
  "id": "usr_123",
  "email": "user@example.com",
  "role": "admin"
}