glm-5.3-flash
GLM-5.3 Flash · Z.ai
- Multiplier
- ×0.05
- Context served
- 1.00M tokens
- Max output
- 32.8K tokens
An OpenAI-compatible endpoint for open-weight models, served through named providers. The weighting formula is public, every response carries the arithmetic behind its own charge, and every limit is published before you pay for it.
100K weighted tokens free. 200K with an invite.
Roughly 2M input tokens on GLM-5.3 Flash. A one-time credit on every new account. No card. Sign in with GitHub and the balance is there when your key is.
Held back on GitHub accounts younger than 14 days, which is an anti-abuse measure.
The endpoint speaks the OpenAI chat-completions API, so anything that takes a base URL and a key already works. This is the configuration, not a simplified version of it. The snippets lead with GLM-5.3 Flash because it is the cheapest model in the catalog; any slug below drops into the same field.
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"tium": {
"npm": "@ai-sdk/openai-compatible",
"name": "Tium",
"options": {
"baseURL": "https://api.tium.ai/v1"
},
"models": {
"glm-5.3-flash": {
"name": "GLM-5.3 Flash",
"limit": {
"context": 1000000,
"output": 32768
}
}
}
}
}
}Each of these has a setup page, with the gotchas that tool actually has: all 15 guides.
One key and one base URL reach every model below; switching is the model field in your request. Each carries its own multiplier, so what you pay follows which model you picked rather than a flat house rate.
GLM-5.3 Flash · Z.ai
DeepSeek V4 Flash · DeepSeek
DeepSeek V4 Pro · DeepSeek
GLM-5.3 · Z.ai
Kimi K3 · Moonshot
Every performance figure on a model card carries the date it was measured, and the ones that have not been measured say so. The full catalog, with each model’s multiplier and published weights, is on /models.
Three things make the claim checkable rather than rhetorical.
How a request turns into a charge is written down and published, not folded into a headline price. If the weighting changes, it changes in public and only for requests made after it.
Every response carries what it cost, what remains, and what the concurrency limit is. You do not have to take the number on this page on trust.
Each model says who serves it. Where that is a third-party provider, the model card says so plainly rather than implying capacity Tium does not own.
X-Tium-Request-Id: req_8f2c1a94e7
X-Tium-Tokens-In: 12400
X-Tium-Tokens-Cached: 3180
X-Tium-Tokens-Out: 8920
X-Tium-Weighted-Tokens: 48875
X-Tium-Model-Multiplier: 1.0
X-Tium-Balance-Remaining: 1243908
X-Tium-Concurrency-Limit: 8
X-Tium-Concurrency-Remaining: 5Input and output tokens have very different costs to serve. Counting them as one number either overcharges long-context work or undercharges generation loops, so they are weighted, and the weights are published rather than folded into a price.
WT = (in × W_IN + cached × W_CACHED + out × W_OUT) × M_model
W_IN = 1.0 # definitional anchor: one input token on glm-5.3
W_CACHED = 0.1857 # what a cache hit costs against a miss
W_OUT = 3.1429 # the provider's output ÷ input price ratio
M_model = 1.0 # glm-5.3 is the reference; others convert to itEvery request you make will show this arithmetic for itself: the token counts, the weights applied, and the multiplier, adding up to the number you were charged.
Tiers are a monthly allotment of weighted tokens and a published concurrency limit. The figures follow from what these models cost to serve rather than being chosen, and every one of them is on the pricing page.
Every tier, allotment and concurrency limit is on /pricing.