For the complete documentation index, see llms.txt. This page is also available as Markdown.

API Token

Token generation and management

Get API access token

post

Exchange API client credentials for an access token. Use this token in the Authorization header as "Bearer " for authenticated API requests.

Body
clientIdstringRequired

The API client ID provided when the API client was created

Example: client_abc123xyz
clientSecretstringRequired

The API client secret provided when the API client was created

Example: secret_def456uvw
organizationIdstringRequired

The organization ID associated with this API client

Example: org_789ghi
Responses
200

Successfully authenticated and returned access token

application/json
tokenstringRequired

JWT access token to use for authenticated API requests

Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
token_typestringRequired

Type of token (always "Bearer")

Example: Bearer
expires_innumberRequired

Token expiration time in seconds

Example: 3600
post
/api/token

Last updated

Was this helpful?