Appearance
Rate limits
The API has a rate limit for Requests per user.
When a client exceeds the rate limit, they receive a 429 Too Many Requests response with the following JSON body:
json
{
"error": "Rate limit exceeded. Please try again later."
}Make sure to implement an appropriate retry logic with exponential backoff.
INFO
Hint: Make sure to reduce the number of token requests your are sending by checking the expiration timestamp instead of sending a token request prior to each request.