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

# Rate limiting

To avoid abuse of the API, it is rate limited to a maximum of 1000 requests per minute.&#x20;

If that limit is exceeded then a standard **HTTP 429 Too Many Requests** will be returned as a response.

```json
{
    "message": "Too Many Attempts. You may try again in 38 seconds.",
    "error": "rate-limit"
}
```

In the **retry-after** http response header there will be the value in seconds after which your requests will start succeeding again.

`retry-after: 38`
