INTEGRATION3 min read
Rate Limits & Quotas
Understanding and working with Conexor's rate limiting and usage quotas
API Rate Limits
Agent API
Agent-to-cloud WebSocket connections
60 requests/minute burst, no steady limit
MCP Server API
JSON-RPC 2.0 endpoint for AI assistants
60 requests/minute burst, no steady limit
OAuth Token Endpoint
Token endpoint for OAuth access tokens
10 requests/minute steady
Audit Logs API
Query audit trail for compliance
60 requests/minute, 100 records/page max
Query Quotas
Each billing tier has a monthly query limit:
text
Free: 500 queries/month Pro: 10,000 queries/month Team: 100,000 queries/month Enterprise: Unlimited
NOTEWhen quota is exceeded, requests return 402 Payment Required.
Row Limits
| Metric | Limit |
|---|---|
| Max rows per query (Free) | 100 |
| Query timeout | 30 seconds |
INFORows per query are capped by tier: Free 100, Pro 500, Team 2,000, Enterprise 10,000. Use pagination for larger result sets.
Best Practices
- Implement caching for frequently accessed data
- Use pagination for large result sets
- Filter early with WHERE clauses to reduce data size
- Monitor usage in Dashboard → Usage