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

Application API Tokens

List application API tokens

get

Returns a paginated list of active application API tokens. Client secrets are not included.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Query parameters
orderstring · enumOptionalPossible values:
per_pageinteger · min: 1 · max: 50Optional
pageinteger · min: 1Optional
Responses
200

Application API tokens loaded

application/json
get/application/applications
200

Application API tokens loaded

Create application API token

post

Creates a new application API token with a unique name. Returns the client_id and client_secret once — the secret is not stored and cannot be retrieved again.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Body
namestring · max: 255Required

Unique display name for the application API token

Responses
201

Application API token created

application/json
idstring · uuidRequired
namestringRequired
client_idstringRequired
client_secretstringRequired

Plaintext secret — returned once and never stored

created_atstring · date-timeRequired
post/application/applications

Delete application API token

delete

Soft-deletes an application API token. The token will no longer be usable for authentication.

Authorizations
AuthorizationstringOptional
Bearer authentication header of the form Bearer <token>.
Path parameters
idstring · uuidRequired
Responses
204

Application API token deleted

No content

delete/application/applications/{id}

No content

Exchange client credentials for access token

post

Exchanges client credentials for a JWT access token using the OAuth2 Client Credentials grant (RFC 6749 §4.4). Accepts both application/json and application/x-www-form-urlencoded.

Supported Standards

Body
grant_typestring · enumRequiredPossible values:
client_idstringRequired
client_secretstringRequired
Responses
200

Access token issued

application/json
access_tokenstringRequired
token_typestring · enumRequiredPossible values:
expires_inintegerRequired

Token lifetime in seconds

post/application/token

Last updated