client_id and api_key for an access token and refresh token. Rate limited to 10 attempts per minute per IP.Authorization: Bearer ********************{
"client_id": 953,
"api_key": "a1b2c3d4e5f6..."
}curl --location --request POST '/auth/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": 953,
"api_key": "a1b2c3d4e5f6..."
}'{
"token_type": "Bearer",
"access_token": "string",
"refresh_token": "string",
"expires_in": 3600,
"refresh_expires_in": 604800
}