Models

GPT Image 2.5 Sunburst

Model id: gpt-image-2.5-sunburst

  • Image generation
  • Multimodal

OpenAI’s precise Image 2.5 model for tighter multi-turn edits.

Best for

Tighter multi-turn edits and campaign stills.

Provider
OpenAI
Context window
Not published
Release date
2026-09-08

Pricing

Input
$7.7116 / 1M
Cached input
$1.9279 / 1M
Image input
$12.3385 / 1M
Cached image input
$3.0846 / 1M
Output
$46.2693 / 1M
Image output
$46.2693 / 1M

Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-09-21).

Performance

Reading

Last 7 days

Not enough data to display the chart.

Activity

Tokens

Top 5 tools · last 7 days

Not enough data to display tool activity.

Availability

Availability (%)

Last 7 days

Operational probes
99.98% over 7 days
Samples
9,211

View service status

Quick start

Generate an image with a tonia_ key and the exact model id below.

curl

curl https://pass.tonia.ca:8443/v1/images/generations \
  -H "Authorization: Bearer $TONIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "model": "gpt-image-2.5-sunburst",
      "prompt": "Draw a red fox",
      "n": 1
    }'

Python (tonia SDK)

import os
from tonia import Tonia

client = Tonia(api_key=os.environ["TONIA_API_KEY"])
response = client.images.generate(
    model="gpt-image-2.5-sunburst",
    prompt="Draw a red fox",
    n=1,
)

TypeScript (tonia SDK)

import { Tonia } from "@tonia-router/sdk";

const client = new Tonia({
  apiKey: process.env.TONIA_API_KEY,
});

const response = await client.images.generate({
  model: "gpt-image-2.5-sunburst",
  prompt: "Draw a red fox",
  n: 1,
});

To edit an image, use /v1/images/edits.

Create a key in the portal