The Leadfeeder API enforces rate limits to ensure fair usage and system stability. Limits are applied per API key.Limits#
Request limit: 10 requests per second
Burst: Up to 15 requests can be made in a single burst before throttling is applied
Monthly quota: 100,000 requests per month
Behavior#
When the request rate or quota is exceeded, the API returns a 429 Too Many Requests error.{
"code": "too_many_requests",
"message": "You've exceeded the maximum amount of allowed requests. Please try again later."
}
Implement exponential backoff or fixed retry delays when handling 429 errors.
Keep track of your own request counts to avoid hitting the monthly quota unexpectedly.
Modified at 2026-03-24 07:58:50