API
Rate limits and quotas
RTIE enforces tenant-level monthly request quotas on authenticated /v1 API routes. Edge rate limiting may also protect public surfaces during traffic spikes.
Plan quotas
| Plan | Monthly API requests |
|---|---|
free | 10,000 |
starter | 100,000 |
pro | 1,000,000 |
enterprise | Contract limit or unlimited tenant configuration |
429 response
When a tenant exceeds its quota, RTIE returns 429 with usage details. Clients should stop high-volume retries, wait for the next quota window, or route the operator to a plan upgrade.
{
"error": "quota_exceeded",
"message": "Monthly request quota exceeded.",
"used": 10000,
"limit": 10000
} Client guidance
- Use exponential backoff for transient
429,500,502, and503responses. - Do not retry non-idempotent writes unless your integration supplies its own idempotency key or dedupe guard.
- Subscribe through webhooks or MCP tool responses instead of polling high-volume session state.
- Contact
dev@rtie.aifor enterprise quota planning before launch traffic tests.