Input
$0.6
per 1M tokens
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.
Input
$0.6
per 1M tokens
Output
$2.2
per 1M tokens
What a typical call costs
$0.0017
A 1,000-token prompt with a 500-token reply:
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": "zai/glm-4.5",
"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="zai/glm-4.5",
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: "zai/glm-4.5",
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.