One API key.Dollars per million tokens.
One published USD rate per model, with your existing OpenAI SDK. Mobile chat shares the same balance.
14Models
1MMax context
1API key
$4.99Plans from
One key, every model
Point the OpenAI SDK at Realrouter and switch models by changing a string. Responses and Chat Completions both work.
Read the docsGPT and Claude, side by side
14 models across both families on one balance, from frontier reasoning down to fast drafting.
Browse modelsTools that match the API
Web search, image generation, function calling, freeform custom tools, and computer use — in the official wire format.
See tool supportPriced in plain dollars
One USD rate per model, per million tokens — a fifth of the vendor's own API price. API keys and mobile chat draw on the same balance.
See pricingMonthly plans
One balance for API keys and mobile chat.
quickstart
Subscribe, create a key, keep your client code.
Install the official OpenAI SDK and set the Realrouter base URL. The dashboard will show your API key once when it is created.
for the primary OpenAI-compatible responses API.
for legacy chat completion clients.
for available models, capabilities, and pricing metadata.
import OpenAI from "openai"
const client = new OpenAI({
baseURL: "https://api.realrouter.org/v1",
apiKey: process.env.REALROUTER_KEY,
})
await client.responses.create({
model: "gpt-5.4-mini",
input: "plan my week",
})