Pricing & Billing

Clear Pricing Before You Route Production Traffic

Pricing is more than a model table. Compare model prices, understand pay-as-you-go versus BYOK economics, and see exactly how usage translates into spend.

Transparent Pricing

Compare current model pricing for pay-as-you-go and BYOK options.

View all pricing
anthropic
Claude Sonnet 4.6
Input$3.60 / 1M tokens
Output$18.00 / 1M tokens
openai
GPT-4o
Input$3.00 / 1M tokens
Output$12.00 / 1M tokens
google
Gemini 2.5 Pro
Input$1.50 / 1M tokens
Output$12.00 / 1M tokens

Pricing FAQ

Compare model costs, understand BYOK fees, and see how billing works before you scale traffic.

Start building in 3 lines of code

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.therouter.ai/v1",
  apiKey: "sk-your-key",
});

const response = await client.chat.completions.create({
  model: "anthropic/claude-sonnet-4.6",
  messages: [{ role: "user", content: "Hello!" }],
});