rate_limit_exceeded

Plugin API error rate_limit_exceeded — per-key request budget exhausted.

HTTP 429 · retryable

Each API key has a rate_limit_per_min budget (default 60). The platform tracks calls in a sliding 1-minute window and rejects further requests until the window slides forward.

How to fix

  • Honour the Retry-After response header before resubmitting.
  • Implement exponential backoff in your client.
  • Spread bulk submissions over time, or use POST /jobs/batch (counts as one request) instead of issuing N single calls.
  • Contact support to raise the per-key limit if your usage genuinely needs it.