---
title: "REST API Rate Limiting"
description: "REST API Rate Limiting"
keywords: "REST API Rate Limiting"
url: "https://www.myrapidi.com/wiki/rest_api_rate_limiting"
locale: "en"
published: "2017-08-07T15:34:16Z"
modified: "2023-04-03T08:34:39Z"
---

The API is rate limited to 100 requests per 2 minutes for each user (actually for each originating IP address).

We are still working on establishing the exact rate limits. Please let us know if you encounter the rate-limiting and in what use cases.

&nbsp;

If a request is rate-limited, we include headers describing the current rate limit status:

```
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 120
```

- `X-RateLimit-Limit`&nbsp;- Total number of requests allowed for current period
- `X-RateLimit-Remaining`&nbsp;- Remaining requests for current period (typically 0)
- `X-RateLimit-Reset`&nbsp;- Number of seconds until the the requests count resets and you can do request again

If the rate limit is hit, the API will return a&nbsp;`429 Too Many Requests`&nbsp;status code. In this situation, your application should not send any further requests until `X-RateLimit-Reset`&nbsp;seconds have elapsed.
