Skip to main content
If you send requests too quickly, you may receive a 429 with a Retry-After header.

What you get back

How to handle it

  • Read the Retry-After header (seconds) and wait that long before retrying.
  • Use exponential backoff with jitter for repeated 429s.
  • Cache your access token and reuse it until close to expiry rather than re-issuing on every call.
Specific rate limits are not yet published. Build your integration to handle a 429 gracefully rather than assuming a fixed ceiling.