Skip to main content
POST
/
v2
/
auth
/
token
Mint short-lived bearer token from API key credentials
curl --request POST \
  --url https://api.kyberis.ai/v2/auth/token
{
  "access_token": "<string>",
  "audiences": [
    "<string>"
  ],
  "expires_at": 123,
  "expires_in": 2,
  "issued_at": 123,
  "issuer": "<string>",
  "principal_id": "<string>",
  "scopes": [
    "<string>"
  ],
  "token_type": "<string>",
  "api_key_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.kyberis.ai/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Successful Response

access_token
string
required
audiences
string[]
required
expires_at
integer
required
expires_in
integer
required
Required range: x >= 1
issued_at
integer
required
issuer
string
required
principal_id
string
required
scopes
string[]
required
token_type
string
required
Allowed value: "Bearer"
api_key_id
string | null