Rate Limiting

Respect server rate limits. Handle 429 responses gracefully.

  • Clients MUST honor the Retry-After header (seconds or HTTP-date)
  • If no Retry-After, use exponential backoff (see Retry section)
  • Clients SHOULD track RateLimit-Remaining headers proactively — slow down before hitting 429
  • Queue and batch requests at the allowed rate rather than fire-and-retry

References:

version
1.0.0
tags
networking, rate-limiting
author
Mike Fullerton
modified
2026-03-27

Change History

Version Date Author Summary
1.0.0 2026-03-27 Mike Fullerton Initial creation