GPT Image 2.5 · Model guide on LAYSO

GPT Image 2.5:Flare, Sunburst, API pricing, and editing

A practical, source-linked guide to ChatGPT Images 2.5 and its two API models: fast Flare, precision-focused Sunburst, official image examples, token pricing, and production checks.

Image generationPrecision editingMulti-turn workflowsTransparent backgrounds
By LAYSOEnglish article

What is GPT Image 2.5?

ChatGPT Images 2.5 is OpenAI’s September 2026 image generation update. OpenAI highlights sharper detail, more natural lighting and texture, faster generation, stronger subject preservation, and more reliable edits across multiple turns. This page is an independent LAYSO guide based on the linked official material.

The ChatGPT product name and API model names are related but not interchangeable. Developers choose either GPT-Image-2.5 Flare or GPT-Image-2.5 Sunburst. Both accept text and image inputs and produce images; their main tradeoff is speed versus editing precision.

OpenAI GPT Image 2.5 example of a beige coffee mug on a wooden table

An official image-generation example from the OpenAI developer guide.

Source: Introducing ChatGPT Images 2.5.

GPT Image 2.5 Flare vs Sunburst

OpenAI positions Flare as the default choice for most applications and Sunburst as the premium option for workflows that benefit from tighter control. Test both with the same prompt, input images, quality setting, and acceptance rubric before choosing a production default.

Official OpenAI GPT Image 2.5 Flare model icon

GPT-Image-2.5 Flare

gpt-image-2.5-flare

Fast, high-quality everyday generation and editing.

Product experiences, creator tools, rapid prototypes, visual search, and higher-volume generation.

Official OpenAI GPT Image 2.5 Sunburst model icon

GPT-Image-2.5 Sunburst

gpt-image-2.5-sunburst

Maximum editing precision for premium visual workflows.

Campaign creative, polished product imagery, and iterative edits where precise control matters more than latency.

Source: OpenAI image generation guide.

Reference fidelity and subject preservation

A useful image edit changes the requested element without quietly rebuilding everything else. OpenAI reports improved preservation of recognizable subjects, composition, lighting, texture, and other details from reference images. The paired official example below shows the type of constrained transformation teams should evaluate with their own material.

Input portrait used in an official ChatGPT Images 2.5 editing example

Input image for OpenAI’s subject-preservation editing example.

Edited portrait from an official ChatGPT Images 2.5 subject-preservation example

Edited result: the clothing changes while the pose and background remain recognizable.

Source: Introducing ChatGPT Images 2.5.

Precision editing and multi-turn consistency

Images 2.5 is designed to follow focused edit instructions while preserving unmentioned details. OpenAI also reports better consistency over longer editing conversations, so a new change is less likely to erase earlier decisions or degrade the image.

Targeted changes

Replace one product, background, color, or piece of copy while preserving the surrounding composition.

Complex layouts

Handle denser creative briefs, transparent backgrounds, and visual structures with multiple constraints.

Iterative refinement

Build on earlier edits through the Responses API when the workflow benefits from conversational context.

Source: Introducing ChatGPT Images 2.5.

GPT Image 2.5 API: models, endpoints, and first request

Use the Image API for a direct generation or edit request. Use the Responses API when image generation belongs inside a conversation or multi-step workflow. Both APIs expose quality, size, format, and compression controls. OpenAI documents the quality values low, medium, high, xhigh, max, and auto for both 2.5 models.

Image API

Call /v1/images/generations for new images or /v1/images/edits to modify an input image.

Responses API

Select Flare or Sunburst in the image-generation tool for conversational and multi-turn image workflows.

The example below uses the official OpenAI endpoint and requires an OpenAI API key. It does not send a request from this page.

import OpenAI from "openai";
import fs from "node:fs";

const openai = new OpenAI({
  apiKey: process.env.OPENAI_API_KEY,
});

const result = await openai.images.generate({
  model: "gpt-image-2.5-flare",
  prompt: "A premium product photograph of a ceramic lamp, warm studio light, neutral background",
  quality: "high",
});

const bytes = Buffer.from(result.data[0].b64_json, "base64");
fs.writeFileSync("lamp.png", bytes);

Source: OpenAI image generation guide.

GPT Image 2.5 API pricing

OpenAI lists the following USD rates per one million tokens for both Flare and Sunburst. These are OpenAI reference rates, not a LAYSO quote. The published GPT Image 2 calculator does not estimate GPT Image 2.5 token consumption, so measure real requests before projecting spend.

Text input
$5.00
Cached text input
$1.25
Image input
$8.00
Cached image input
$2.00
Image output
$30.00

Source: GPT-Image-2.5 Flare model documentation.

A practical production checklist

The following is LAYSO editorial guidance, not an additional OpenAI model specification.

  1. Choose the model by evidence. Compare Flare and Sunburst on the same prompts and edit sequences; score identity preservation, text accuracy, latency, and review time.
  2. Lock the creative brief. State the subject, composition, style, required text, background, aspect ratio, and what must not change.
  3. Measure whole-request cost. Record input images, retries, quality setting, generated output, and human selection time instead of comparing only headline rates.
  4. Keep provenance and review. Preserve prompts and source rights, inspect critical details, and account for C2PA metadata and watermarking in downstream workflows.
  5. Verify the active route. Confirm the exact model ID, account access, limits, and current selling price before switching production traffic.

GPT Image 2.5 FAQ

Is GPT Image 2.5 one API model or two?

It is a model family with two API model IDs: gpt-image-2.5-flare and gpt-image-2.5-sunburst. Flare prioritizes speed for everyday workloads; Sunburst prioritizes precision for detailed creative and editing work.

Which GPT Image 2.5 model should I choose?

Start with Flare for most production applications and higher-volume generation. Evaluate Sunburst when precise, repeated edits or premium campaign and product imagery justify longer generation time.

Can GPT Image 2.5 edit an existing image?

Yes. Both models accept text and image inputs and output images. The Image API supports generations and edits, while the Responses API supports conversational and multi-turn image workflows.

How much does the GPT Image 2.5 API cost?

OpenAI documents token rates of $5 per million text input tokens, $1.25 for cached text input, $8 for image input, $2 for cached image input, and $30 for image output. Actual request cost depends on the input and generated output.

Is GPT Image 2.5 available through LAYSO?

This guide does not confirm an active LAYSO route. Check the live model catalog for gpt-image-2.5-flare or gpt-image-2.5-sunburst before integrating; LAYSO availability and selling prices depend on the active upstream configuration.

Official images are reproduced with source attribution. Rights remain with OpenAI and the respective rights holders. Downloading an asset does not grant a reuse license.

Independent guide by LAYSO. OpenAI, ChatGPT, and GPT are trademarks of their respective owner. Specifications, pricing, access, and product behavior may change.

Download the image source manifest