> For the complete documentation index, see [llms.txt](https://docs.riskbase.uk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.riskbase.uk/riskbase-docs/api/rate-limits.md).

# Rate Limits

The API implements a "sliding window" rate limiter with the following limits:

* `60 requests per 1 minute`
* `10 requests per 10 seconds`

All rate limited endpoints return HTTP headers describing the limit and how many requests remain:

```shell
X-Rate-Limit-Minute-Limit: 60
X-Rate-Limit-Minute-Remaining: 59
X-Rate-Limit-10Second-Limit: 10
X-Rate-Limit-10Second-Remaining: 9
```

These are the limits at the time of writing but they may change. Your integration should gracefully manage changes to these limits.
