Overview
Enrow implements rate limits to ensure fair usage and maintain service quality. The limit is the same across all endpoints and all plans.Default Limits
| Endpoint | Rate Limit |
|---|---|
POST /email/find/single | 10 req/s |
POST /email/find/bulk | 10 req/s |
POST /email/verify/single | 10 req/s |
POST /email/verify/bulk | 10 req/s |
POST /phone/single | 10 req/s |
POST /phone/bulk | 10 req/s |
Rate limits are per API key and measured in requests per second (RPS).
Exceeding the Limit
When you exceed the rate limit, you’ll receive a429 Too Many Requests response:
Need Higher Limits?
We can increase your RPS on a case-by-case basis. Contact us at api@enrow.io with your use case.Tips
Use Bulk Endpoints
Use Bulk Endpoints
Instead of making 100 single requests, make 1 bulk request (up to 5,000 items). A single bulk POST counts as 1 request against your rate limit.
Use Webhooks Instead of Polling
Use Webhooks Instead of Polling
Polling the GET endpoint wastes your rate limit quota. Use webhooks to receive results automatically.
Cache Results
Cache Results
Store results to avoid redundant API calls for the same contact.

