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

Monthly plans

One balance for API keys and mobile chat.

startertrial
$4.99/mo
$5.00included usage
20requests / min
Choose
basicstart here
$9.99/mo
$12.00included usage
60requests / min
Choose
plusbest value
$19.99/mo
$32.00included usage
200requests / min
Choose
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",
})