Per generation
$1.6
each image or video generated
Sign in to try this model — generations are billed to your account.
Sign inEverything 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
$1.6
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/veo-3-preview-t2v-novita",
"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/veo-3-preview-t2v-novita",
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/veo-3-preview-t2v-novita",
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.