Rate Limits
Rate limits applied to Manako endpoints.
Public API (/api/v1/*)
Section titled “Public API (/api/v1/*)”Two layers of limits apply; exceeding either returns HTTP 429.
| Scope | Limit |
|---|---|
| Source IP address | 300 requests / min |
| API key (per plan) | Free: 60 / Pro: 180 requests / min |
When the limit is exceeded
Section titled “When the limit is exceeded”- Status code 429 with error code
RATE_LIMITED - The
Retry-Afterresponse header contains the number of seconds to wait
{ "error": { "code": "RATE_LIMITED", "message": "Rate limit exceeded", "status": 429 }}Client guidelines
Section titled “Client guidelines”- On 429, wait for
Retry-Afterseconds before retrying