Skip to main content
POST
/
token
curl --request POST \ --url https://api.cello.so/token \ --header 'Content-Type: application/json' \ --data ' { "accessKeyId": "<accessKeyId>", "secretAccessKey": "<secretAccessKey>" } '
{ "accessToken": "<accessToken>", "refreshToken": "<refreshToken>", "expiresIn": 18000, "refreshTokenExpiresIn": 432000 }

Documentation Index

Fetch the complete documentation index at: https://docs.cello.so/llms.txt

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

Body

application/json

Use this schema to exchange accessKeyId and secretAccessKey for tokens.

accessKeyId
string
required
secretAccessKey
string
required

Response

Tokens issued

Returned when exchanging accessKeyId and secretAccessKey for tokens.

accessToken
string
required
refreshToken
string
required
expiresIn
integer
required
refreshTokenExpiresIn
integer
required