Control-plane APIs (requests per minute)
Task, analytics, and billing APIs are usually throttled to a steady requests-per-minute (RPM) budget per caller. A common default when limiting is enabled is on the order of ~120 RPM per service surface (task, analytics, billing).
How callers are grouped: when the request is tied to an authenticated user, counting is usually per user; otherwise limits often fall back to client IP.
When limits are off: operators can disable HTTP rate limiting entirely for a service. In that case you will not see throttling from this layer (other protections may still apply).
Burst and headers
Limiters often allow a short burst above the steady RPM so occasional spikes do not fail immediately. On successful responses you should see:X-RateLimit-LimitX-RateLimit-Remaining
X-RateLimit-Reset (Unix seconds). Titan’s control-plane limiter does not always set Retry-After; clients should read X-RateLimit-Reset or use exponential backoff with jitter.
JSON body on HTTP 429 (control plane)
When the shared limiter rejects a call, the response is typically429 Too Many Requests with the standard error envelope:
Preview endpoints (daily quotas)
Preview routes (for examplePOST /api/v1/templates/:id/preview and task preview endpoints) use daily quotas, separate from the RPM bucket used for ordinary control-plane calls. Limits are enforced per environment and may be backed by shared storage so counts stay consistent across instances.
Example of the kind of knobs operators configure (illustrative only):
If your deployment changes these values, error messages and headers should reflect the configured limits—treat any numbers in docs as non-binding examples.
Preview HTTP 429 body (non-standard)
When preview quota is exceeded, the task API may return 429 with a different JSON shape (nosuccess field):
message text is environment-specific; align product UI with what your deployment returns.
Authentication endpoints
Sign-in, session, and token endpoints may use separate rate limits from the task and billing APIs. Numeric defaults are not fixed in this documentation—observe429 responses and headers, or ask your operator for the policy that applies to your auth host.
What this page does not cover
Background infrastructure—queues, workers, proxies, and internal schedulers—can impose additional throughput or fairness limits that are not the same as the REST API limits above. Those belong in operator runbooks, not in end-user API documentation. Non-production environments sometimes disable control-plane throttling for convenience; production is expected to enforce sensible limits.Related reading
- Credits and billing — wallet, ledger, and how usage maps to debits.
- Authentication and API keys — scopes for billing and task APIs.
- API Reference → Task Service API / Billing API — concrete paths and response shapes.