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.2
tags
networking, rate-limiting
author
Mike Fullerton
modified
2026-04-09

Change History

Version Date Author Summary
1.0.2 2026-04-09 Mike Fullerton Add trigger tags
1.0.1 2026-04-09 Mike Fullerton Reorganize into use-case directory
1.0.0 2026-03-27 Mike Fullerton Initial creation