# Rate Limiting

### Limits

| Route group                                   | Limit        | Window     |
| --------------------------------------------- | ------------ | ---------- |
| API endpoints (Recipients, Quotes, Transfers) | 100 requests | Per minute |
| Dashboard endpoints                           | 60 requests  | Per minute |
| Webhook callbacks                             | 200 requests | Per minute |

### When you hit the limit

The API returns a `429 Too Many Requests` response with a `Retry-After` header indicating how many seconds to wait.

### Best practices

* **Implement exponential backoff** — when you receive a 429, wait for the Retry-After duration then retry with increasing delays
* **Cache quotes** — avoid requesting new quotes repeatedly for the same parameters within the quote validity window
* **Batch where possible** — space multiple recipient creation requests rather than sending them all at once
* **Monitor your usage** — use the Request Logs in the dashboard to track API call volume


---

# 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://docs.zynta.com/guides/rate-limiting.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.
