Skip to content
StatusSupportDashboard

Access Tokens

Exchange a long-lived API key for a short-lived access token suitable for delegated or time-boxed use.

Create short-lived access token
POST/v1/access_tokens
ModelsExpand Collapse
AccessTokenCreateAccessTokenResponse object { access_token, expires_at, expires_in, token_type }

Response containing the newly created short-lived access token.

access_token: string

Short-lived bearer token. Use it in the Authorization header exactly like a long-lived API key. It cannot be used to create additional access tokens.

expires_at: string

ISO 8601 timestamp at which the access token expires.

formatdate-time
expires_in: number

Number of seconds until the access token expires.

token_type: "Bearer"

Token type. Always Bearer.