Per generation
$0.0391
each image or video generated
Everything you need to send the first request.
Billed per token at the rates below. Cost is held before the call and settled against actual usage — attempts that fail cost nothing.
Per generation
$0.0391
each image or video generated
The OpenAI SDK works as-is — point it at this base URL and use the model ID above.
curl https://routerbase.seeksvc.com/v1/chat/completions \
-H "Authorization: Bearer $ROUTERBASE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-2-5-flash-image-t2i",
"messages": [{"role": "user", "content": "Hello"}]
}'from openai import OpenAI
client = OpenAI(
base_url="https://routerbase.seeksvc.com/v1",
api_key="sk-rb-...", # create one at /dashboard/keys
)
resp = client.chat.completions.create(
model="google/gemini-2-5-flash-image-t2i",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai"
const client = new OpenAI({
baseURL: "https://routerbase.seeksvc.com/v1",
apiKey: process.env.ROUTERBASE_API_KEY,
})
const resp = await client.chat.completions.create({
model: "google/gemini-2-5-flash-image-t2i",
messages: [{ role: "user", content: "Hello" }],
})
console.log(resp.choices[0].message.content)Point any OpenAI-compatible client at the base URL above and pass this model ID. Nothing else in your code has to change.