Rate Limits & Quotas
Understand API usage constraints, tier-specific allocations, throttle behavior, and how to monitor or request increased limits for your NexusAI integration.
Default Rate Limits
Rate limits are applied per API key and are calculated using a sliding window algorithm. Limits vary based on your subscription tier.
| Limit Type | Starter | Professional | Enterprise |
|---|---|---|---|
| Requests / Minute | 60 | 600 | Unlimited* |
| Requests / Day | 10,000 | 500,000 | Custom |
| Concurrent Connections | 5 | 25 | 100+ |
| Max Payload Size | 4 MB | 16 MB | 100 MB |
| Custom Model Slots | 1 | 5 | Unlimited |
Rate Limit Headers
Every API response includes headers to help you track consumption and prevent throttling.
Monitor Remaining in your client logic. If it drops below 10%, scale back or queue requests.
Throttling & Retry Behavior
When you exceed your limit, NexusAI returns a 429 Too Many Requests status. The response body includes a structured error:
Recommended Strategy
- Implement exponential backoff with jitter:
delay = min(2^attempt * 1000 + random(0, 1000), 30000) - Never retry immediately on 429. Respect the
Retry-Afterheader orretry_afterfield. - Use connection pooling and batch endpoints where available to reduce overhead.
Monitoring Usage
Usage API
Fetch real-time and historical consumption data programmatically:
Query params:
start, end, resolution (hour|day|month)Returns: JSON object with
total_requests, quota_used, quota_limit, breakdown
Dashboard & Alerts
Log into the NexusAI Console to view graphical usage trends, set threshold alerts (50%, 80%, 95%), and receive notifications via email, Slack, or webhook.
Requesting Quota Increases
Need higher limits for a campaign, model training job, or seasonal spike?
- Navigate to Settings > API Keys > Quota Requests in the console.
- Specify the endpoint, desired limit, duration, and business justification.
- Enterprise plans can request permanent increases; others receive temporary boosts (max 30 days).
Approvals typically take 1–2 business hours. Temporary limits automatically revert after the specified window.
Frequently Asked Questions
429 until the quota resets at 00:00 UTC. No overage charges are applied.