Error Reference

RATE_LIMIT_EXCEEDED

The request exceeded configured rate-limit thresholds.

This error means too many requests were sent in a short period.

Typical causes

  • Burst traffic from retries without backoff
  • Shared API key used by multiple clients

How to fix

  1. Apply exponential backoff with jitter.
  2. Reduce concurrent request volume.
  3. Retry after the rate-limit window resets.

Example

{
  "errors": [
    {
      "message": "Rate limit exceeded",
      "code": "RATE_LIMIT_EXCEEDED",
      "documentation": "https://developers.rad.live/docs/errors/rate_limit_exceeded"
    }
  ]
}

On this page