We need to implement rate limiting before the v2 launch. Current system has no throttling and we've seen abuse patterns from scrapers.
Each API key gets a bucket of 100 tokens, refilled at 10/sec. Burst-friendly but prevents sustained abuse.
Rate-Limit: 100 requests/10s
Retry-After: <seconds>
X-RateLimit-Remaining: <count>
| Tier | Rate | Burst | Use case |
|---|---|---|---|
| Free | 60/min | 10 | Hobby projects |
| Pro | 600/min | 50 | Production apps |
| Enterprise | 6000/min | 200 | High-scale |
comments (0)