Understanding API Rate Limits
6 min read read
Loading...
Rate limiting is a strategy used to control the amount of incoming traffic to a network. By restricting the number of requests a user or IP address can make to an API within a given timeframe, we ensure that the platform remains stable, responsive, and secure against Denial of Service (DoS) attacks.
If you are integrating with the IARAP public API, please adhere to the following limits:
When you exceed your allowed quota, the IARAP API will reject subsequent requests and return an HTTP status code:
HTTP 429 Too Many Requests
The response headers will also include vital information:
X-RateLimit-Limit: Your total allowed requests in the current window.X-RateLimit-Remaining: How many requests you have left.X-RateLimit-Reset: A Unix timestamp indicating when your limit will reset.X-RateLimit-Reset header and pause your application's requests until that exact timestamp is reached.