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": [
{
"allowed_cidrs": [
"[\"203.0.113.0/24\"]"
],
"created_at": 1640995200,
"expiry_at": 1672531200,
"last_updated_at": 1640995200,
"lookup_id": "uuid-123",
"name": "My API Token",
"token_id": "token_123"
}
]
}