Rate Limits

To ensure fair usage and protect platform stability, Zluri APIs enforce rate limits on all API keys.

Default Limits

100 requests per minute per API key

When Rate Limit Is Exceeded

If you exceed the limit, you’ll receive a 429 Too Many Requests response:

{
  "errors": [
    {
      "msg": "You have exceeded the allowed number of requests. Please retry after the time specified in the 'retry-after' header"
    }
  ],
  "code": "RATE_LIMIT_EXCEEDED"
}
HeaderDescription
retry-afterSeconds to wait before retrying (on 429 error)