Fusion Mini
OrcaRouter
Free right now
Auto-router
Fusion Mini is a auto-router for free models from OrcaRouter. It is currently free at 1 provider with up to 1M tokens of context.
- Developer
- OrcaRouter
- Context
- 1M tokens
- Type
- Auto-router
Where to use Fusion Mini for free
Each row is a separate free endpoint with its own limits.
| Provider | Context | Limit | Card | |
|---|---|---|---|---|
OrcaRouter orcarouter/fusion-mini |
1M | Free tier | — | Open |
Quick start
curl https://api.orcarouter.ai/v1/chat/completions \
-H "Authorization: Bearer $ORCAROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "orcarouter/fusion-mini",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://api.orcarouter.ai/v1",
api_key="YOUR_ORCAROUTER_API_KEY",
)
reply = client.chat.completions.create(
model="orcarouter/fusion-mini",
messages=[{"role": "user", "content": "Hello!"}],
)
print(reply.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.orcarouter.ai/v1",
apiKey: process.env.ORCAROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "orcarouter/fusion-mini",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(reply.choices[0].message.content);Example for OrcaRouter. Any OpenAI-compatible client works: Cursor, Cline, OpenCode, Open WebUI.
Benchmarks
This model is not on the Artificial Analysis leaderboard yet. We do not publish our own estimates.
FAQ
Is Fusion Mini free?
Yes. As of September 26, 2026, Fusion Mini is free at OrcaRouter. Each provider has its own limits — see the table above.
What is the context window of Fusion Mini?
The largest context among free routes is 1,000,000 tokens. Some providers cap it lower.
How do I call Fusion Mini via API?
Use any OpenAI-compatible client with base URL https://api.orcarouter.ai/v1, model ID orcarouter/fusion-mini, and a OrcaRouter key.