Skip to main content
GPT-5 Mini

GPT-5 Mini

OpenAI's faster, cost-efficient GPT-5 variant for low-latency and high-volume work.

Low LatencyCost EfficientHigh Volume

Context Window

400,000

GPT-5 Mini

Max Output

128,000

1M tokens

Input

$0.25

Output

$2

Model Codegpt-5-mini

Playground

gpt-5-mini
Reference Images0/5

Click or drag

No output yet

Pricing

PlanContext WindowMax OutputInputOutputCache WriteCache Read
GPT-5 Mini
400,000128,000
$0.25
$2
-
$0.025

Official OpenAI pricing for GPT-5 mini.

Cached input pricing applies to reused prompt tokens.

Cache read or cached input pricing applies to reused prompt tokens.

README

GPT-5 mini is OpenAI's smaller GPT-5-family model for cost-sensitive, high-throughput workloads that still need strong reasoning, tool use, and reliable instruction following.
  • OpenAI positions GPT-5 mini as a faster and more cost-efficient version of GPT-5 for well-defined tasks.
  • It supports the same general API shape as the broader GPT-5 family, including tool use and structured outputs, while targeting lower latency and lower unit cost.
  • It is a strong fit for high-volume assistants, classification-and-routing layers, and production systems where cost and speed are primary constraints.

API

Use the API docs for request format, parameters, and integration details.

OpenAI's faster, cost-efficient GPT-5 variant for low-latency and high-volume work.

Model Code

gpt-5-mini

View API Docs

API

Endpoint

POST /v1/chat/completions

Authentication

Authorization: Bearer YOUR_REACH_API_KEY
Content-Type: application/json

Example

curl -X POST "https://direct.reachapi.ai/v1/chat/completions" \
  -H "Authorization: Bearer YOUR_REACH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "YOUR_MODEL_ID",
    "messages": [
      {
        "role": "user",
        "content": "Introduce ReachAPI in one sentence."
      }
    ],
    "temperature": 0.2
  }'