models.fyi

GPT-5.5

OpenAIProprietary

OpenAI's flagship reasoning model. Five effort tiers with unusually graceful degradation — the safest model to run below max effort.

76.6

400K

$1.25 · $10

140 tok/s

Apr 14, 2026

The sweet spot, per task

Cheapest effort tier that keeps ≥96% of this model's peak quality on the benchmarks behind each task type. Below the floor number, quality is not okay — it just fails quietly.

Everyday writing & Q&A

Low

Chat, drafting, summaries, general questions.

keeps 96.5% of peak95% cost

Code assist

Medium

Autocomplete, single functions, small fixes.

keeps 96.6% of peak88% cost

Coding agents

High

Real repos, multi-file changes, end-to-end tickets.

keeps 98.0% of peak64% cost

⚠ at Minimal: only 76% of peak — avoid

Math & quantitative

High

Derivations, statistics, financial models.

keeps 96.7% of peak64% cost

⚠ at Minimal: only 63% of peak — avoid

Hard research problems

High

Novel, frontier, genuinely difficult questions.

keeps 97.5% of peak64% cost

⚠ at Minimal: only 72% of peak — avoid

Agents & tool use

High

Long workflows with tools, policies, and state.

keeps 98.7% of peak64% cost

Quality and cost, tier by tier

On everyday tasks, Low keeps 96.5% of X-High quality at $0.012 vs $0.27 per task.

at X-Highat X-High (peak)
BenchmarkX-HighPeakWhat it predicts
MMLU-Pro89.089.0Everyday Q&A · Drafting emails & docs · Summarizing articles
GPQA Diamond89.089.0Technical analysis · Root-cause debugging · Scientific writing
Humanity's Last Exam35.035.0Novel research questions · Frontier problem solving
AIME 202597.097.0Financial modeling · Statistics · Algorithm design
SWE-bench Verified78.078.0Coding agents · Bug fixing in real repos · Multi-file refactors
LiveCodeBench85.085.0Writing functions from scratch · Algorithms · Code autocomplete
τ²-bench86.086.0Tool-using agents · Customer-facing automation · Multi-step workflows
IFEval93.093.0Structured output (JSON) · Templated generation · Batch pipelines

Is it still the same model this week?

Weekly Intelligence Index · dashed rules mark serving-change events

Apr 27, 2026OpenAI · Medium only-1.1 ptsrecovered May 25, 2026

Serving-stack regression in medium-effort routing under load; acknowledged by OpenAI and fixed four weeks later.

One key, this model, your effort

The gateway speaks the OpenAI Chat Completions dialect. Pick a host with gpt-5.5@host syntax, set reasoning_effort, and the sweet spot above becomes one line of config. Full docs →

chat with GPT-5.5
curl https://models.fyi/api/v1/chat/completions \
  -H "Authorization: Bearer $MFYI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "reasoning_effort": "low",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
# local dev: replace https://models.fyi with http://localhost:3000