Key Highlights
- 🚀 One generation, two models:
gpt-image-2.5-flareis speed-first,gpt-image-2.5-sunburstis quality- and editing-first; they currently point togpt-image-2.5-flare-2026-09-08/gpt-image-2.5-sunburst-2026-09-08 - ⚡ Flare is faster: OpenAI says Flare delivers higher image quality than
gpt-image-2at up to 50% lower latency; early customers measured 2–4× the speed ofgpt-image-2 - 🎯 Sunburst is sharper: OpenAI’s most capable image generation and editing model, better at preserving earlier edits and reference subjects across turns, with longer generation times than Flare
- 🎚️ Six quality tiers:
qualitygainsxhigh/maxon top oflow/medium/high/auto;gpt-image-2stops athigh - 💰 Same price: $5 text input, $8 image input, $30 image output per 1M tokens, item for item the same as
gpt-image-2 - 🔌 Zero-change integration: APIYI’s official relay is live; swap the
modelname and you are done, in theDefault/image2Enterprise/svipgroups
Background
On September 8, 2026, OpenAI released ChatGPT Images 2.5. The official pitch is “sharper details, more precise editing, faster generation”: more natural lighting, richer textures, better handling of complex layouts and transparent backgrounds, stronger preservation of people and objects from reference images, and better memory of earlier changes across multi-turn edits. OpenAI also disclosed that ChatGPT Images and the GPT-Image API models together now produce more than 3 billion images a week. Unlike April’sgpt-image-2, which shipped as a single model, this generation is split in two on the API side. Flare is the small model, optimized for speed, and OpenAI positions it as “the default choice for most applications”. Sunburst is the base model, optimized for quality, built for premium visual workflows that need detailed editing. ChatGPT also gained Sketch (hand-drawn references) and image comments for localized edits, but those are ChatGPT product features and are not part of the API.
APIYI completed the official-relay integration the day after release. Both models share the images API, the same parameter set and the same price list as gpt-image-2, so existing gpt-image-2 code only needs a model-name change.
Deep Dive
How the two models divide the work
gpt-image-2.5-flare · speed-first
The small model, optimized for speed. OpenAI says it beats
gpt-image-2 on quality at up to 50% lower latency; early customer evaluations put it at 2–4× the speed of gpt-image-2. Suited to creator and social content, product imagery, visual search, rapid prototyping and high-volume generation.gpt-image-2.5-sunburst · precision-first
The base model, optimized for quality, which OpenAI calls its “most capable model for image generation and editing”. Editing instructions are followed more precisely and multi-turn edits are more stable, suited to production-ready campaign creative and polished product imagery. Generation takes longer than Flare.
Differences from gpt-image-2
Technical specs
Size rules carry over fromgpt-image-2: presets 1024x1024 / 1536x1024 / 1024x1536; custom sizes must use multiples of 16, keep the aspect ratio between 1:3 and 3:1, cap the longest edge at 3840 pixels and stay between 0.65MP and 8.3MP total. Resolutions above 2560×1440 are still marked experimental.
Output formats are png (default) / jpeg / webp, with output_compression available for jpeg / webp; transparent backgrounds need background: "transparent" with png or webp. Streaming via stream: true + partial_images (0–3) works as before. The official model pages list v1/images/generations and v1/images/edits as supported endpoints, with mask inpainting supported.
Practical Use
Code samples
Change themodel in your existing gpt-image-2 code and leave everything else as is:
Best practices
Production recommendations:
- Default to
gpt-image-2.5-flare; switch togpt-image-2.5-sunburstfor editing tasks or production-grade large images - Pin the dated snapshots
gpt-image-2.5-flare-2026-09-08/gpt-image-2.5-sunburst-2026-09-08in production so a future alias change does not move you - Get
quality="high"working first, then evaluatexhigh/max; budget the two new tiers from measuredusage - Sunburst takes longer, so start client timeouts at the 360-second value proven on
gpt-image-2 - As with
gpt-image-2, do not sendinput_fidelity; edits run at high fidelity by default
Pricing and Availability
Pricing
APIYI’s official relay prices both models at OpenAI’s official rates, identical item for item togpt-image-2:
Because billing is per token, the
low / medium / high per-image reference prices at 1K sizes match gpt-image-2 (about $0.006 / $0.053 / $0.211 at 1024×1024). The full cost table is in the gpt-image-2 official-relay guide. xhigh / max and 2K / 4K have no fixed per-image price; go by usage.output_tokens in each response.
Groups and the reverse-engineered sibling
The
Default group works out of the box; production workloads that need higher stability can use the image2Enterprise group, which has steadier supply. Model names and endpoints are unchanged across groups. On the reverse-engineered side, gpt-image-2.5-all is sourced from the ChatGPT web app and priced the same as gpt-image-2-all; see the gpt-image-2-all guide.
Stack recharge promotions
Official-relay pricing matches OpenAI’s list; the discount comes from recharge bonuses, which bring the effective cost below direct OpenAI billing. See Recharge promotions.Summary and Recommendations
The real change in GPT-image-2.5 is not “bigger” but split by scenario: Flare covers most everyday generation at lower latency, Sunburst pushes editing precision and the quality ceiling one notch higher, and both keepgpt-image-2 pricing. For teams already on gpt-image-2, this is close to a free upgrade.
- ✅ Batch generation, social content, product images: swap
gpt-image-2forgpt-image-2.5-flare, faster with no quality loss - ✅ Multi-turn retouching, production-grade campaign creative: use
gpt-image-2.5-sunburstfor more precise edits and better subject preservation - ✅ Budget-sensitive, size-agnostic:
gpt-image-2.5-allat $0.03 per image is a good fit for prototyping - ⚠️ Measure the new quality tiers first:
xhigh/maxhave no official per-image price; verify withusagebefore production
Sources and dates:
- OpenAI announcement:
openai.com/index/introducing-chatgpt-images-2-5 - OpenAI model pages:
developers.openai.com/api/docs/models/gpt-image-2.5-flare,developers.openai.com/api/docs/models/gpt-image-2.5-sunburst - OpenAI image generation guide:
developers.openai.com/api/docs/guides/image-generation - Data retrieved: September 9, 2026