OpenAI

gpt-oss-120b

131K ctxText Tools Reasoning

Released Aug 5, 2025 · 178B tokens this week · 5 providers

Overview

An open-weight mixture-of-experts model from OpenAI with configurable reasoning effort. Because the weights are public it is served by many accelerator vendors at a fraction of API-model pricing. A strong default when you want GPT-family behaviour on commodity inference.

reasoningprogrammingagents

Providers

Reference data — not yet measured from live traffic

PROVIDERMAX OUTOUTPUT /MQUANT
DeepInfraCheapest
131K33K$0.090$0.45620ms13098.92%fp8
Novita AI
131K33K$0.095$0.48700ms11098.61%fp8
Fireworks AI
131K33K$0.10$0.50420ms24099.58%Full
Groq
131K33K$0.10$0.52209ms78099.86%Full
Cerebras
66K33K$0.11$0.53190ms145099.71%Full

Latency p50 reflects a provider’s API endpoint responsiveness — the round-trip to its API, not per-token inference time. These figures, with throughput and uptime, are reference data until the gateway aggregates its own traffic.

Price comparison

Blended $ per 1M tokens

gpt-oss-120b$0.36

Blended rate per 1M tokens, weighted one part prompt to three parts completion — roughly the shape of a chat workload. Your mix will move the number.

Call it

OpenAI-compatible — swap the base URL and go

curl https://model.cards/api/v1/chat/completions \
  -H "Authorization: Bearer $MODELCARDS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-oss-120b",
    "messages": [
      { "role": "user", "content": "Summarize the tradeoffs of speculative decoding." }
    ]
  }'