Models
On BitRouter a model is an aggregate served by many providers — one id, ranked endpoints, variants, and discounted open supply.
On BitRouter a "model" is not a single endpoint. It's an aggregate: one logical model — say openai/gpt-4o or anthropic/claude-sonnet-4.6 — that can be served by many providers at once. You address it by a stable model id, and BitRouter decides which underlying provider endpoint actually answers each request.
That indirection is the whole point. You write your agent against anthropic/claude-sonnet-4.6, and the set of providers behind it can grow, shrink, or re-price without you changing a line of code.
One id, many providers
Because a model is an aggregate, requesting it kicks off a provider selection step. By default BitRouter ranks the eligible providers by a balanced score — a blend of cost, latency, throughput, and uptime — and sends your request to the best one. When the chosen provider fails transiently, it can fall through to the next-ranked provider, or to the next model you listed.
Variants re-rank for one request
When one model has several providers, you sometimes want to bias that ranking for a single call. A model variant is an inline suffix on the id — :cost, :latency, :throughput — that re-ranks the eligible providers along the axis you named, for that request only. It never changes which providers are eligible, never changes authorization, and a bare id is just the balanced default.
Open models, discounted
Open (non-closed-source) models carry a second property: BitRouter serves them through its own self-hosted provider at 25% below official pricing by default, with no suffix or configuration. The :discount suffix pins a request to that supply explicitly, and it's where any custom account discount applies.
Learn how to
- Provider selection — how providers behind one model are ranked.
- Model fallback — pass an ordered list and walk it on failure.
- Model variants — the
:cost/:latency/:throughputsuffixes. - Managed provider & pricing — the hosted provider and the full catalog.
- Discounted models — 25% off by default, up to 50% for open-source projects.
How is this guide?