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 '/auth/token' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": 953,
"api_key": "a1b2c3d4e5f6..."
}'{
"token_type": "Bearer",
"access_token": "xK9mP2qR5sT8uV1wY4zA7bC0dE3fG6hI",
"refresh_token": "jL2nO5pQ8rS1tU4vW7xZ0aB3cD6eF9gH",
"expires_in": 3600,
"refresh_expires_in": 604800
}