Subscription-backed AI gateway

Connect your AI account.
Use the SDK you already have.

One API in front of Codex and Claude. Bring your own provider access — the gateway handles auth, sessions, streaming, and limits.

01

Connect your account

Sign in to Codex with your ChatGPT account, or paste an Anthropic API key. Your provider access stays yours.

02

Create a gateway key

One gw_live_ key works with the OpenAI SDK and the Anthropic SDK alike.

03

Change two lines

Point your existing client at the gateway and pick a model. No new SDK to install.

The whole migration
const openai = new OpenAI({
-  apiKey: process.env.OPENAI_API_KEY
+  apiKey: process.env.GATEWAY_API_KEY,
+  baseURL: "https://api.example.com/v1"
});

await openai.responses.create({ model: "codex/default", input: "Hello" });