Drop Realrouter into the tools you already use

Realrouter is a fully OpenAI-compatible endpoint. Point any OpenAI SDK or third-party client at our base URL and you are done. Here are a few setups for the most common tools.

Cursor

Cursor

AI-first code editor. Settings → Models → OpenAI API Key → Override OpenAI base URL, then paste the URL below.

Override OpenAI Base URLBase URL
https://api.realrouter.org/v1
Continue.dev

Continue.dev

Open-source VS Code AI assistant. Add this entry to ~/.continue/config.json.

~/.continue/config.json
{
  "models": [
    {
      "title": "Realrouter",
      "provider": "openai",
      "model": "gpt-5.4-mini",
      "apiBase": "https://api.realrouter.org/v1",
      "apiKey": "REALROUTER_KEY"
    }
  ]
}
Aider

Aider

CLI coding assistant. Export two environment variables, then pass --model to point at a Realrouter model.

shell
export OPENAI_API_BASE="https://api.realrouter.org/v1"
export OPENAI_API_KEY="$REALROUTER_KEY"

aider --model gpt-5.4-mini
Cline

Cline / Roo Code

VS Code agentic extension. Set API Provider to OpenAI Compatible and paste the URL and key.

API Provider: OpenAI CompatibleBase URL
https://api.realrouter.org/v1
OpenAI SDK

Any OpenAI SDK

Every official and community SDK just works — only the baseURL and apiKey change.

quickstart.ts
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.REALROUTER_KEY,
  baseURL: "https://api.realrouter.org/v1",
});

const response = await client.responses.create({
  model: "gpt-5.4-mini",
  input: "Plan my week",
});