# 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 Requests`error with additional rate limiting information in the headers of the response.

<pre><code><strong>x-ratelimit-limit	200
</strong>x-ratelimit-remaining	0
<strong>x-ratelimit-reset	1612465680
</strong></code></pre>

**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.

##

\ <br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dev.redirhub.com/rate-limits.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
