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