Skip to content
Pricing
OpenAI

GPT Image 2.5 Flare API

Create images with GPT Image 2.5 Flare using text, images. Available resolutions: 1k / 2k / 4k. Try the current API settings, preview results and reuse your inputs.

Modalities
TextImageImage
Published
1k
$0.03/ request
Platform price · USD
2k
$0.06/ request
Platform price · USD
4k
$0.15/ request
Platform price · USD
Input
Sign in to choose a key from your account.
Generation mode
Describe what you want to create.
Legacy parameters
Request preview
{
  "model": "gpt-image-2.5-flare",
  "input": {
    "quality": "medium",
    "resolution": "1k",
    "output_format": "jpeg",
    "prompt": "A quiet mountain lake at sunrise, soft morning light."
  }
}
Output

Your next idea starts here.

Run the model to preview your result.

GPT Image 2.5 Flare pricing

Estimate one request, then choose a budget for your workflow.

UsageQuantityRateCost
1k1 request$0.03/ request$0.03
Cost per request$0.03

Public USD estimate. Your account rate and final recorded usage determine the actual charge.

View all specifications and prices
SpecificationOur priceOfficial reference
1k$0.03 / request
2k$0.06 / request
4k$0.15 / request

Start with a prompt

Choose a starter prompt, adapt it to your needs and run the model.

Product concept

An original cobalt ceramic perfume bottle on warm limestone, soft side lighting, clean composition, no logos.

Try this prompt ↗

Space and atmosphere

A modern coastal library at sunrise, soft light through linen curtains, calm water reflecting the architecture, cinematic composition.

Try this prompt ↗

Story scene

Tiny original robots crafting a paper lantern in a warm workshop, delicate tools, soft practical lighting and expressive characters.

Try this prompt ↗

What is GPT Image 2.5 Flare?

Create images with GPT Image 2.5 Flare using text, images. Available resolutions: 1k / 2k / 4k. Try the current API settings, preview results and reuse your inputs.

Describe the subject, composition, lighting and intended use in your prompt. Add reference images when you want to guide the subject or visual style. Choose only the resolution, aspect ratio and output options listed in the current contract; inspect the result before reusing it in your product.

GPT Image 2.5 Flare specifications

Model IDgpt-image-2.5-flare
ProviderOpenAI
API/v1/tasks
Resolution1k / 2k / 4k
Aspect ratio21:9 / 16:9 / 3:2 / 4:3 / 5:4 / 1:1 / 4:5 / 3:4 / 2:3 / 9:16
Qualitylow / medium / high / xhigh / max / auto
Output formatpng / jpeg / webp
Backgroundauto / transparent / opaque
Reference imagesUp to 20

Before you generate

  • Use the current model ID and the API request shape shown on this page.
  • Generation is asynchronous. Keep the returned task ID to retrieve the result and billing status.
  • Only options supported by the current platform contract are exposed in Playground.

Compare GPT Image 2.5 Flare with related models

SpecificationGPT Image 2.5 FlareGPT Image 2GPT Image 2.5 Sunburst
ProviderOpenAIOpenAIOpenAI
Input → outputTextImageImageTextImageImageTextImageImage
Selection basisCurrent modelBoth declare text, image input · Same billing unitsBoth declare text, image input · Same billing units
Resolution1k / 2k / 4k1k / 2k / 4k1k / 2k / 4k
Reference images202020
Starting price$0.03 / request$0.02 / request$0.03 / request

Choose by the input types, output settings and billing unit your workflow needs. Try the same prompt across models to compare results for your own use case.

BUILD WITH NEWROUTERS

Build with GPT Image 2.5 Flare in your app

Submit parameters through the Media Tasks API, then retrieve the result with the task ID. Image and video models keep their own input requirements.

  1. 01
    Get your API key

    Sign in and prepare a key with access to this model.

  2. 02
    Configure your request

    Choose parameters in Playground and copy the API example.

  3. 03
    Run and inspect the result

    Review status, outputs and charges in History.

API integration

POST /v1/tasks · Authorization: Bearer

cURL
curl 'https://newrouters.com/v1/tasks' \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $MODEL_API_KEY" \
  --data '{
  "model": "gpt-image-2.5-flare",
  "input": {
    "quality": "medium",
    "resolution": "1k",
    "output_format": "jpeg",
    "prompt": "A quiet mountain lake at sunrise, soft morning light."
  }
}'
JavaScript
const response = await fetch("https://newrouters.com/v1/tasks", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer $MODEL_API_KEY"
  },
  body: JSON.stringify({
    "model": "gpt-image-2.5-flare",
    "input": {
      "quality": "medium",
      "resolution": "1k",
      "output_format": "jpeg",
      "prompt": "A quiet mountain lake at sunrise, soft morning light."
    }
  })
});
if (!response.ok) throw new Error(await response.text());
console.log(await response.text());
Python
import json
import requests

response = requests.post(
    "https://newrouters.com/v1/tasks",
    headers=json.loads("{\"Content-Type\":\"application/json\",\"Authorization\":\"Bearer $MODEL_API_KEY\"}"),
    json=json.loads("{\"model\":\"gpt-image-2.5-flare\",\"input\":{\"quality\":\"medium\",\"resolution\":\"1k\",\"output_format\":\"jpeg\",\"prompt\":\"A quiet mountain lake at sunrise, soft morning light.\"}}"),
    timeout=300,
)
response.raise_for_status()
print(response.text)

Poll the returned task ID for processing status and output assets.

curl -H "Authorization: Bearer $MODEL_API_KEY" "https://newrouters.com/v1/tasks/$TASK_ID"

Documentation: Authentication · Task status and results · Error handling

Full API parameters and combination constraints

Request parameters

ParameterTypeValues & constraints
sizestringDeprecated compatibility field. Prefer aspect_ratio.
imagesarray
prompt *string
qualityJSON"low" · "medium" · "high" · "xhigh" · "max" · "auto"Default: "medium"
backgroundJSON"auto" · "transparent" · "opaque"
resolutionJSON"1k" · "2k" · "4k"Default: "1k"
aspect_ratioJSON"21:9" · "16:9" · "3:2" · "4:3" · "5:4" · "1:1" · "4:5" · "3:4" · "2:3" · "9:16"
output_formatJSON"png" · "jpeg" · "webp"Default: "jpeg"
Full JSON Schema and combination constraints
{
  "type": "object",
  "required": [
    "prompt"
  ],
  "properties": {
    "size": {
      "type": "string",
      "pattern": "^(?:auto|[1-9][0-9]{1,4}x[1-9][0-9]{1,4})$",
      "deprecated": true,
      "description": "Deprecated compatibility field. Prefer aspect_ratio."
    },
    "images": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "maxItems": 20
    },
    "prompt": {
      "type": "string",
      "maxLength": 100000,
      "minLength": 1
    },
    "quality": {
      "enum": [
        "low",
        "medium",
        "high",
        "xhigh",
        "max",
        "auto"
      ],
      "default": "medium"
    },
    "background": {
      "enum": [
        "auto",
        "transparent",
        "opaque"
      ]
    },
    "resolution": {
      "enum": [
        "1k",
        "2k",
        "4k"
      ],
      "default": "1k"
    },
    "aspect_ratio": {
      "enum": [
        "21:9",
        "16:9",
        "3:2",
        "4:3",
        "5:4",
        "1:1",
        "4:5",
        "3:4",
        "2:3",
        "9:16"
      ]
    },
    "output_format": {
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "default": "jpeg"
    }
  },
  "additionalProperties": false
}

GPT Image 2.5 Flare API · Common questions

Answers about pricing, inputs, integration and results.

How much does GPT Image 2.5 Flare cost?

The current public price starts at $0.03 / request. The pricing section lists each specification. Playground checks your account price before submitting; the completed request records the final charge.

How do I get a NewRouters API key?

Sign in and open Quick Start above the workspace. Select or create a key with access to this model, then copy the request example.

Which inputs and output settings are supported?

Supported input fields: images, prompt, quality, background, resolution, aspect_ratio, output_format. The parameter table includes allowed values and defaults.

Can I use reference images?

Yes. Use the reference mode to upload images or supply their URLs. The current limit is 20 images. Reference images guide a new generation; they do not imply mask editing support.

How do I retrieve results and past requests?

Save the returned task ID and query the task until it succeeds or fails. The History tab lets you reopen your tasks and reuse their parameters.

What happens if the model is closed?

The model keeps its page and identity, but new generation requests are blocked. Existing task records remain accessible. An upstream outage is reported separately from an administrator closing the model.

Read the API documentation ↗

Discover more AI tools

Browse all models ↗

Integration topics / Documentation

All documentation ↗