Quick answer: o4-mini at high reasoning effort scores 80.2% on LiveCodeBench, 18.08% on Humanity's Last Exam, and 35.5% on AetherCode — outperforming o3 (88%, 20.32%) on coding while costing 9× less. At $1.10/$4.40 per 1M tokens with vision support, it offers the best reasoning benchmark performance per dollar of any model tracked on Benchgen at its launch.
Where o4-mini (high) leads
Where it lags
Best for: Cost-efficient competitive programming, technical problem-solving, agentic coding tasks, and any pipeline where o3-tier accuracy is needed at o4-mini pricing.
o4-mini at high effort is the maximum-accuracy configuration of OpenAI's April 2025 compact reasoning model. "High" allocates the largest internal reasoning token budget, trading latency for accuracy. The result is LiveCodeBench 80.2% — higher than o3's 75.8% at a price 9× lower.
The o4-mini family brought two major advances over o3-mini: improved base reasoning capability, and multimodal vision support. At high effort, these translate into benchmark results that challenge the previous generation's flagship model (o3) on coding tasks.
For agentic coding workloads, o4-mini-high's 35.5% AetherCode score is the standout result. AetherCode measures end-to-end agentic code generation across real-world software engineering tasks — 35.5% represents strong performance for a model at this price point.
| Field | Value |
|---|---|
| Organization | OpenAI |
| Parameters | Undisclosed |
| Context window | 200,000 tokens |
| Effort setting | High (maximum reasoning budget) |
| Architecture | Chain-of-thought reasoning (o-series) |
| License | Proprietary (API only) |
| Release date | April 16, 2025 |
| Knowledge cutoff | June 2024 (estimated) |
| Modality | Text + Vision (multimodal) |
| Input (per 1M tokens) | Output (per 1M tokens) | |
|---|---|---|
| OpenAI API | $1.10 | $4.40 |
Reasoning tokens billed as output. At high effort, reasoning token counts are higher, increasing effective cost. Pricing per OpenAI pricing page.
o4-mini (high) has a 200,000-token context window — suitable for long document analysis and multi-file code review tasks.
| Benchmark | Score | Source | Date |
|---|---|---|---|
| LiveCodeBench | 80.2% (high effort) | Benchgen evaluation | 2025-07 |
| Humanity's Last Exam | 18.08% | Benchgen evaluation | 2025-07 |
| AetherCode | 35.5% | Benchgen evaluation | 2025-07 |
| Model | LiveCodeBench | HLE | AetherCode | Price (in/out per 1M) |
|---|---|---|---|---|
| o4-mini (high) | 80.2% | 18.08% | 35.5% | $1.10 / $4.40 |
| o3 | 75.8% | 20.32% | — | $10 / $40 |
| o4-mini (med) | 74.2% | 14.28% | — | $1.10 / $4.40 |
| Gemini 2.5 Pro | 73.6% | 21.64% | 32.7% | $1.25 / $10 |
| o3-mini (high) | 67.4% | — | — | $1.10 / $4.40 |
o4-mini (high) vs o3: higher LiveCodeBench and AetherCode at 9× lower cost — o3 retains a slight HLE edge (20.32% vs 18.08%). For coding-heavy workloads, o4-mini-high is the clear winner. For general expert reasoning, o3 or Gemini 2.5 Pro may be preferable.
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY")
response = client.chat.completions.create(
model="o4-mini",
reasoning_effort="high",
messages=[{"role": "user", "content": "Implement a Dijkstra solver with priority queue..."}],
)
print(response.choices[0].message.content)Specs and scores sourced from OpenAI's official o4-mini announcement (April 2025) and Benchgen evaluations. Pricing cited to the OpenAI pricing page. Last updated 2026-07-24.
This model isn’t on any benchmark leaderboard yet.