429 Too Many Requests; Leadping does not queue them.
The limit depends on both the route and the resolved caller.
General API limits
These limits apply when a route does not have a more specific policy:Route-specific limits
Route-specific policies override the general caller limit:
Limits are evaluated using the applicable account, credential, user, or network context. Creating additional credentials does not create independent capacity.
Handle 429 responses
Retry-After is measured in seconds.
- Stop sending affected requests.
- Wait for the
Retry-Afterduration. - Retry only operations that are safe to repeat.
- Add jitter when multiple workers may resume together.
- If the header is absent, use exponential backoff with jitter.
Reduce throttling
- Coordinate request budgets across workers.
- Avoid polling when a webhook or event can provide the update.
- Cache stable responses where appropriate.
- Use stable external IDs and idempotent processing for intake retries.
- Monitor sustained rate, burst rate,
429responses, and retry volume.

