v50

latestOpenAPI 3.0.1raw.githubusercontent.com2026-03-2591124300.0 KB
Token

List tokens

Get all tokens for the authenticated account with optional filtering by kind and status.

get/account/tokens

Query parameters

kindstring

Filter by token kind (e.g., 'jwt', 'api_key')

with_invalidboolean

Include revoked and expired tokens

Response

List of tokens

Example response

{
  "results": [
    {
      "created_at": 1640995200,
      "expiry_at": 1672531200,
      "last_updated_at": 1640995200,
      "lookup_id": "uuid-123",
      "name": "My API Token",
      "token_id": "token_123"
    }
  ]
}