QuantumAPI

Rate Limits

Understand rate limiting, quotas, and how to handle 429 responses.

Per-Plan Limits

PlanRequests / minuteBurst
Free60120
Starter300600
Business12002400
EnterpriseCustomCustom

429 Handling Strategy

if response.status == 429:
  retry_after = int(response.headers.get('Retry-After', '1'))
  sleep(retry_after)
  retry_with_exponential_backoff()
qapi — QuantumAPI CLI Documentation