Rate Limits

RedirHub limits API requests on a per account basis to a reasonable amount - a daily limit of 250,000 requests and a burst limit of 200 requests per 60 seconds.

If your client reaches our rate limiting, you will receive a 429 Too Many Requestserror with additional rate limiting information in the headers of the response.

x-ratelimit-limit	200
x-ratelimit-remaining	0
x-ratelimit-reset	1612465680

x-ratelimit-limit

The number of requests that may originate from your client during the set period.

x-ratelimit-remaining

The number of requests remaining until the reset cycle.

x-ratelimit-reset

The epoch timestamp when the request limit will be reset.

You can use the headers from the response programatically to throttle your own requests. These headers are only returned if you have reached the request limit.

Last updated