Rate limiting
What happens if you go too fast.
The Tremendous API allows you to send 10 requests / second.
If you exceed the rate limit, the API will respond to requests with a 429
HTTP error code. Whenever that happens, simply pause any additional requests for 1 second and try again.
The response body when rate limited looks like this:
{
"error": {
"message": "Too many requests",
"payload": {}
}
}
Need for speed?
Increased rate limits can be set up by emailing [email protected].
Updated over 1 year ago