Skip to content
IQ Routing

FAQ

Does the gateway store my prompts?

By default, no. IQ Routing stores request metadata (timestamps, model and provider, token counts, latency, cost, and the routing decision), which the owning team can browse in the requests browser. Prompt and completion payloads are not logged unless your team explicitly enables payload logging. When it is enabled, payloads are visible only to authorized team members and are kept for your team's configured retention window, and payload logging can be disabled again at any time.

Does IQ Routing offer Zero Data Retention (ZDR)?

Yes. ZDR is an org-level setting you turn on in Settings, and with it on, request and response bodies are never persisted and payload capture cannot be armed while it is on. Metadata rows (timing, token counts, cost, model chosen) are still written, because billing and the usage page run on them, so this is not a claim that nothing is stored. See /docs/security for the exact boundary, including how conversation state and response caching behave under ZDR.

How do I tell which rate limit a 429 hit?

Every 429 response carries an X-RateLimit-Scope header naming the limit that fired. The scope values are rpm, tpm, daily_budget, monthly_budget, and key_spend_ceiling, so a client can back off on an RPM burst and escalate on a blown monthly budget without opening a support ticket. Retry-After and X-RateLimit-Reset ride along on the rpm and tpm windows; a spend cap has no rolling reset, so do not assume those two headers are always present.

Which models are supported?

Three providers: OpenAI, Anthropic, and Google. On OpenAI that is the GPT-5 line, including the reasoning models, with GPT-4o and the o-series kept as deeper fallback rungs. On Anthropic it is the Claude family (Opus, Sonnet, Haiku). On Google it is Gemini Flash. The routing ladder tracks each provider's current frontier model, so a roster refresh does not change your call site. A separate model, claude-fable-5, is reachable only through the cap:orchestrate capability handle rather than through the ladder above; see /docs/capabilities.

Can I bring my own provider keys?

Yes, and you should. Per-org provider credentials live in /providers, encrypted at rest. The gateway uses your keys for upstream calls and bills you against the provider's actual usage, so the gateway stays revenue-neutral on the upstream side.

Is there a free tier?

The hosted gateway is free for self-serve teams on BYOK. IQ Routing is not open source and there is no self-hosted distribution today. A $70/mo Team plan adds per-team budgets, the audit log, alerting, org-scoped access controls, and custom band maps. Enterprise covers on-prem or VPC deployment and a SOC2 evidence pack on request. See /pricing.

How do I correlate a gateway error with a request?

Every response includes an X-Request-Id header. Search /requests?request_id=<id> to see the full pipeline trace.