One API key.All models.

Use monthly credits with your existing OpenAI SDK. Mobile chat shares the same balance.

Monthly plans

One credit balance for API keys and mobile chat.

startertrial
$4.99/mo
500credits
~250GPT-5.4-mini messages
Choose
basicstart here
$9.99/mo
1,500credits
~750GPT-5.4-mini messages
Choose
plusbest value
$19.99/mo
4,000credits
~2,000GPT-5.4-mini messages
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",
})