o3 Mini
Description
A smaller variant of O3, expected to offer enhanced multimodal capabilities, improved reasoning, and more efficient resource utilization compared to previous models while maintaining strong performance on core tasks.
At a Glance
Key pricing and model details available for this model.
Input price
$1.10
per 1M tokens
Output price
$4.40
per 1M tokens
Context window
200K
tokens
Hallucination rate
14.8%
Token Pricing
Token pricing normalized to per-million-token rates.
Input / 1M tokens
$1.10
Output / 1M tokens
$4.40
Cache Read / 1M tokens
$0.55
Token Pricing Details
Rates are shown per 1M tokens for easier comparison.
| Input / 1M tokens | $1.10 |
| Input unit | 1M tokens |
| Output / 1M tokens | $4.40 |
| Output unit | 1M tokens |
| Cache Read / 1M tokens | $0.55 |
| Cache Read unit | 1M tokens |
Feature Availability
Capabilities explicitly listed in the current payload.
LLM
Available
Vision
Not listed
Function calling
Available
Reasoning
Available
Reasoning Effort Levels
Supported Parameters
Artificial Analysis
Index scores currently reported for this model.
Intelligence Index
25.9
Coding Index
17.9
Category Radar
Aggregated from the benchmark values present for reasoning, code, math, and accuracy.
Benchmark Breakdown
Detailed benchmark results drawn from the current payload.
Intelligence Index
Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.
25.9
Reported score
Coding Index
How well the model handles real programming tasks.
17.9
Reported score
MMLU-Pro
A broad and difficult knowledge-and-reasoning benchmark across many subjects.
79.1%
Reported score
GPQA
Graduate-level science questions designed to be difficult to shortcut.
74.8%
Reported score
HLE
A very hard expert-level exam across a wide range of subjects.
8.7%
Reported score
LiveCodeBench
Fresh programming tasks meant to test current coding ability.
71.7%
Reported score
SciCode
Coding tasks drawn from real scientific workflows.
39.9%
Reported score
MATH-500
A set of difficult competition-style math problems.
97.3%
Reported score
AIME
Advanced math competition questions.
77%
Reported score
TerminalBench Hard
A harder coding-agent benchmark for complex multi-step terminal tasks.
6.8%
Reported score
Tau2
Evaluates realistic agent behavior in tool-using support workflows.
28.7%
Reported score
Code Samples
Quick start with the Routeway API
import OpenAI from 'openai';
const openai = new OpenAI({
baseURL: "https://api.routeway.ai/v1",
apiKey: "<YOUR_API_KEY>",
});
async function main() {
const completion = await openai.chat.completions.create({
model: "o3-mini",
messages: [
{
role: "user",
content: "Explain quantum computing in simple terms"
}
]
});
console.log(completion.choices[0].message);
}
main();