GPT-5 Nano: Pricing, Context, and Benchmarks

GPT-5 Nano is OpenAI's GPT-5 model released on 2025-08-07. It runs on a 400K-token context window, priced at $0.05/M input and $0.40/M output. Cheapest GPT-5 tier. Use for routing, classification, and short-form generation.

Input
$0.05/M
Output
$0.40/M
Cached input
$0.0050/M
Context
400K
Max output
64K

Specifications

ProviderOpenAI
FamilyGPT-5
Released2025-08-07
Statusactive
Context window400K tokens
Max output64K tokens
Modalitiestext
Capabilities function calling json mode streaming
Tokenizero200k_base
API endpointhttps://api.openai.com/v1/responses
DocumentationOfficial docs ↗
Last updated2026-05-29

What this model is good for

Based on benchmark scores and capability fit, GPT-5 Nano ranks well for:

Cost calculator

For 1,000 tokens of input and 1,000 tokens of output per call, this model costs $0.0005 per call. For typical usage:

WorkloadTokens / call (in/out)$/call$/1K calls$/1M calls
Short Q&A 200 / 100 $0.000050 $0.05 $50
Standard chat 1K / 500 $0.000250 $0.25 $250
RAG with retrieval 4K / 500 $0.000400 $0.40 $400
Long doc summary 20K / 1K $0.001400 $1.40 $1,400
Long context (100K input) 100K / 2K $0.005600 $5.60 $5,600

For more precise estimates including caching discounts, use the LLM API Cost Calculator.

Other OpenAI models

Common comparisons

API setup

curl https://api.openai.com/v1/responses \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "gpt-5-nano", "messages": [{"role": "user", "content": "Hello"}]}'

See the official documentation for the full request/response schema. For pre-flight token counting before paying, use the appropriate token counter.