429 rate_limited with headers telling you the policy and when to retry:
Retry-Afteris the number of seconds to wait before retrying.RateLimit-Policydescribes the budget (here, 600 requests per 60-second window).
Backing off
RespectRetry-After, and add jitter when you retry so many clients do not retry in
lockstep. A simple, safe strategy:
reveal_rate_limited, to prevent enumeration; poll the order rather than hammering
the codes endpoint.