Overview
KillB implements rate limiting to ensure fair usage and system stability.Rate Limits
| Environment | Requests per Second | Burst |
|---|---|---|
| Sandbox | 100 | 200 |
| Production | 50 | 100 |
Headers
Response includes rate limit headers:Handling Rate Limits
Best Practices
Implement Backoff
Implement Backoff
Wait when rate limited, don’t spam retries
Cache Responses
Cache Responses
Cache user data and reduce API calls
Use Webhooks
Use Webhooks
Avoid polling with webhooks
Batch Operations
Batch Operations
Group related operations together
Next Steps
Best Practices
Production integration tips