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.
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",
})