Free Models Router
OpenRouter
Free right now
Auto-router
Free Models Router is a auto-router for free models from OpenRouter. It is currently free at 2 providers with up to 200K tokens of context.
- Developer
- OpenRouter
- Context
- 200K tokens
- Type
- Auto-router
Where to use Free Models Router for free
Each row is a separate free endpoint with its own limits.
| Provider | Context | Limit | Card | |
|---|---|---|---|---|
OpenRouter openrouter/free |
200K | Free tier | No | Open |
OrcaRouter orcarouter/free |
— | Free tier | — | Open |
Quick start
curl https://openrouter.ai/api/v1/chat/completions \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openrouter/free",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key="YOUR_OPENROUTER_API_KEY",
)
reply = client.chat.completions.create(
model="openrouter/free",
messages=[{"role": "user", "content": "Hello!"}],
)
print(reply.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openrouter.ai/api/v1",
apiKey: process.env.OPENROUTER_API_KEY,
});
const reply = await client.chat.completions.create({
model: "openrouter/free",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(reply.choices[0].message.content);Example for OpenRouter. 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 Free Models Router free?
Yes. As of September 26, 2026, Free Models Router is free at OpenRouter, OrcaRouter. Each provider has its own limits — see the table above.
What is the context window of Free Models Router?
The largest context among free routes is 200,000 tokens. Some providers cap it lower.
How do I call Free Models Router via API?
Use any OpenAI-compatible client with base URL https://openrouter.ai/api/v1, model ID openrouter/free, and a OpenRouter key.