Rate limits

We apply the following rate limits to our REST API. Limits are the same for all environments.

EndpointsMethodsLimit
/user/*POST10 per minute
/*GET HEAD2,400 per minute
/*POST PUT PATCH DELETE60 per minute

Handling rate limit errors

When you exceed a limit, the API returns a 429 Too Many Requests response with a JSON error body:

1{
2 "message": "Too Many Requests"
3}

Check the Retry-After response header to see how many seconds to wait before retrying.