HTTP 429 Too Many Requests
indicates you have exceeded your allowed requests.OCTO-RateLimit-Limit
OCTO-RateLimit-Remaining
OCTO-RateLimit-RetryAfter
HTTP 429
. When you implement error handling use the error code 429
to detect throttling. Response headers will include OCTO-RateLimit-RetryAfter
. Backing off requests using RetryAfter
is the fastest way to recover from throttling.OCTO-RateLimit-RetryAfter
header.429
error code, you are still being throttled. Retry with Exponential backoff, use the recommended Retry-After delay and retry the request until it succeeds.