Reasons and How to Fix
Too Many Requests
You’re sending requests faster than your plan allows. To fix:- Implement exponential backoff in your code
- Add delays between requests
- Consider upgrading to a higher plan for increased rate limits
Burst Limit Hit
Even with credits available, there’s a per-second burst limit to ensure service stability. Best Practices:Rate Limits by Plan
| Plan | Requests/second | Requests/day |
|---|---|---|
| Free | 1 | 100 |
| Pro | 10 | 10,000 |
| Business | 50 | 100,000 |