The Unified Interface For LLMs

Better prices, higher uptime, no subscriptions.

15+

Models

4

Providers

5

Companies

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
••••••••••••••••