1. Get your API key
Create an account at /signup. Top up any amount to get an API key prefixed zr-... visible in your dashboard.
Create an account at /signup. Top up any amount to get an API key prefixed zr-... visible in your dashboard.
Point any OpenAI-compatible SDK at our gateway:
https://api.zionrouter.com/v1Pick your language. The model name accepts any provider model — we route under the hood.
curl https://api.zionrouter.com/v1/chat/completions \
-H "Authorization: Bearer zr-..." \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5-mini",
"messages": [{"role": "user", "content": "Hello"}]
}'from openai import OpenAI
client = OpenAI(
api_key="zr-...",
base_url="https://api.zionrouter.com/v1",
)
resp = client.chat.completions.create(
model="gpt-5-mini",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
apiKey: "zr-...",
baseURL: "https://api.zionrouter.com/v1",
});
const resp = await client.chat.completions.create({
model: "gpt-5-mini",
messages: [{ role: "user", content: "Hello" }],
});
console.log(resp.choices[0].message.content);Every request shows up in real time with cost, latency, and the upstream model that served it.
Top up any amount to start. No credit card required.