Skip to main content
POST
/
v1
/
auth
/
token
Exchange an API key for an access token
curl --request POST \
  --url https://api.passu.ai/v1/auth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_id": "<string>",
  "client_secret": "<string>"
}
'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123
}

Body

application/json
client_id
string
required
Required string length: 1 - 255
client_secret
string
required
Required string length: 1 - 255

Response

Successful Response

access_token
string
required
token_type
string
required
expires_in
integer
required