GLM 5.3 vs GPT-OSS 120B
Two open-weight chat models on the same endpoint and API key, so switching between them is a one-word change. Below: what each costs for three realistic workloads, how they differ, and measured speed.
Inference APIs prices are read live from the price list.
- Cost: GPT-OSS 120B is cheaper in all three workloads, by 86–89%.
- Speed (measured): GLM 5.3 0.41 s to first token and 171 tok/s; GPT-OSS 120B 0.46 s and 46 tok/s.
Side by side
| GLM 5.3 | GPT-OSS 120B | |
|---|---|---|
| Served by | Inference APIs | Inference APIs |
| Model author | Z.ai | OpenAI |
| Model id | zai-org/GLM-5.3 | openai/gpt-oss-120b |
| Input price | $1.82 / 1M tokens | $0.20 / 1M tokens |
| Output price | $5.72 / 1M tokens | $0.80 / 1M tokens |
| Context window | 1M tokens | 131K tokens |
| Capabilities | Chat, Reasoning, Tool calling, JSON mode | Chat, Reasoning, Tool calling, JSON mode |
| Weights | Open | Open |
| Status | Available | Available |
| Limits | No per-minute or per-day request or token caps; usage draws on a prepaid balance | No per-minute or per-day request or token caps; usage draws on a prepaid balance |
| Time to first token | 0.41 s | 0.46 s |
| Output speed | 170.6 tokens / s | 45.8 tokens / s |
What three workloads cost
List prices applied to the same work. The cheaper side of each row is in bold.
| Workload | GLM 5.3 | GPT-OSS 120B | Difference |
|---|---|---|---|
| Chat assistant — 10,000 turns of 800 tokens in, 300 out | $31.72 | $4.00 | 87% |
| Long prompts or RAG — 10,000 requests of 8,000 in, 500 out | $174 | $20.00 | 89% |
| Generation-heavy — 10,000 requests of 500 in, 2,000 out | $124 | $17.00 | 86% |
GPT-OSS 120B is cheaper in all three workloads, by 86–89%. Reasoning models bill their thinking as output tokens, so real output counts run higher than the visible answer; treat the generation-heavy row as a floor for them.
When to choose which
- You need more than 131K tokens of context (it takes 1M)
- You stream long answers: 171 tokens per second against 46
- Coding agents and long multi-step tasks where GLM 5.3 Flash runs out of depth
- You want a large open-weight model with a 1M-token context, hosted in the United States
- You need more than 131K tokens of context
- Cost is the deciding factor; it is cheaper in every workload above
- You are replacing llama-3.3-70b-versatile and want the model Groq itself recommends
- You build agents: tool calling, JSON-schema output and a visible reasoning trace are all verified on this endpoint
- High-volume or latency-sensitive work; GLM 5.3 Flash costs about a ninth as much
Price, context and speed are measurable; answer quality on your task is not something a table can settle. Both take the same request, so the honest test is to run your own prompts through each in the playground.
Measured speed
Medians of three streamed runs on 2026-09-17, public endpoint, a prompt that asks for about 120 words. Time to first token is the first token of any kind, reasoning included; output speed counts every generated token from that point. Reasoning models then think before the visible answer starts: GLM 5.3 began answering after 6.22 s and GPT-OSS 120B after 1.38 s at default settings, which you can shorten with the reasoning controls on each model page. Expect ±30% with time of day. Method and raw numbers: speed measurements.
Trying both
Same endpoint, same key. Change one string:
for MODEL in "zai-org/GLM-5.3" "openai/gpt-oss-120b"; do
curl -s https://api.inferenceapis.com/v1/chat/completions \
-H "Authorization: Bearer $INFERENCE_API_KEY" -H "Content-Type: application/json" \
-d "{\"model\": \"$MODEL\", \"max_tokens\": 500, \"messages\": [{\"role\": \"user\", \"content\": \"Summarise the plot of Hamlet in two sentences.\"}]}" \
| jq -r '.model, .choices[0].message.content, .usage'
doneFAQ
Which is cheaper, GLM 5.3 or GPT-OSS 120B?
GPT-OSS 120B is cheaper in all three workloads, by 86–89%. The table above uses list prices: GLM 5.3 $1.82 / 1M tokens input, $5.72 / 1M tokens output; GPT-OSS 120B $0.20 / 1M tokens input, $0.80 / 1M tokens output.
How do I switch between them?
They are on the same endpoint and key. Change the model field from zai-org/GLM-5.3 to openai/gpt-oss-120b and nothing else.
Why does GLM 5.3 use more output tokens than the visible answer?
It is a reasoning model: it thinks before it answers and the thinking is billed as output tokens. Budget for that in output-heavy workloads, and set max_tokens to a few hundred or more so the answer is not cut off.
Spotted a price or limit that has changed? Tell us and we will re-check the provider page.
