Troubleshooting
Fix the most common FluxRouter problems fast: connection errors, error codes, truncated output, latency, and finding which model answered.
Something not working? Start here. Most issues fall into a handful of buckets, and almost all of them are fixed by checking three things first.
What to check first
Before anything else, confirm these:
- Base URL has
/v1. The OpenAI-compatible base ishttps://api.fluxrouter.ai/v1, and the Anthropic-compatible base ishttps://api.fluxrouter.ai/anthropic. A missing/v1or a bare/chatpath is the single most common cause of connection failures. There is no bare/chatendpoint. - The key is your Flux key. It starts with
sk-. Send it asAuthorization: Bearer sk-...(the Anthropic path also acceptsx-api-key: sk-...). A leftover OpenAI or Anthropic key will return401. - The model is real. Use
flux-auto(the default) or a realflux-*id. A model id your client rejects, or one Flux does not recognize, is the second most common failure. See Models. - Capture
X-Flux-Request-Id. Every response includes it. When you ask for help, include that id so support can find your exact request.
Pages in this section
- Error reference (401, 402, 429, 5xx): what each status code means and how to fix it.
- Truncated or empty output: responses that stop early or come back blank.
- Latency and timeouts: slow responses and client-side timeout errors.
- Find out which model answered and what it cost: read the
X-Flux-*response headers. - My tool won't connect: per-client gotchas for Codex, Cursor, Copilot, and others.
Still stuck?
Grab the X-Flux-Request-Id from the failing response, note the exact base URL and model id you used, and contact support. Those three details resolve most tickets on the first reply.