The Unified Interface For LLMs
Better prices, higher uptime, no subscriptions.
15+
Models
4
Providers
5
Companies
One API for Any Model
Access Claude, Gemini, Llama, and more through a single OpenAI-compatible interface.
Browse models
Higher Availability
Multi-provider fallback routing. If one provider goes down, requests automatically route to the next.
View pricing
Pay Per Token
No subscriptions. Buy credits and use them across any model. Transparent per-token pricing.
View pricing
Cache-Aware Billing
Cached tokens are billed at reduced rates. Save up to 90% on repeated prompts with supported models.
View models
Featured Models
15+ active models across 4 providers
Drop-in OpenAI Replacement
Just change the base URL and API key. Works with any OpenAI SDK.
example.ts
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourrouter.com/v1",
apiKey: "yr-...",
});
async function main() {
const response = await client.chat.completions.create({
model: "anthropic/claude-sonnet-4",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0]?.message?.content);
}
main().catch(console.error);1
Sign Up
Create an account with Google to get started.
2
Buy Credits
Credits can be used with any model or provider.
Apr 1
$99
Mar 30
$10
3
Get Your API Key
Create an API key and start making requests. Fully OpenAI compatible.
YOURROUTER_API_KEY
••••••••••••••••