Rate Limiting
To keep the API performant and reliable for all users, Brevix enforces rate limits at multiple levels.
Plan Limits
- Apply to all accounts regardless of plan.
- Typical rule: per-minute limit max 60 requests per IP.
- Only five concurrent connections allowed from a single IP.
Best Practices
- Throttle calls programmatically (e.g., exponential backoff, batching).
- Cache results locally to reduce unnecessary API calls.
- Monitor usage in your dashboard to avoid unexpected surges.