Public Model / gpt-image
GPT Image 2.5 Sunburst API pricing
GPT Image 2.5 generation and editing with explicit output size and quality controls.
- Availability
- Available
- Tasks
- Create Image, Edit Image
- Published rates from
- $0.00474
Request calculator
Configure GPT Image 2.5 Sunburst
Controls and rates come directly from the checked public catalog.
Interactive calculator
Price a direct generation
Choose a task, configure its inputs, and see the current catalog price.
Step 1
Choose a generation type
Step 2
Configure generation
Step 3
Estimated reservation
- Generation
- $0.005881 image x $0.00588
- Prompt allowance
- $0.00128256 prompt bytes x $0.000005
- Input media
- $0.000 images x $0.065536
- Minimum request
- $0.004745
Estimated reservation, not a fixed price. Includes estimated output tokens, one text token per UTF-8 prompt byte, and an 8,192-token allowance per reference image. Final charges use reported usage: text input $5/M tokens, image input $8/M, image output $30/M; cached text $1.25/M and cached images $2/M. Actual usage may be lower or higher. Unused reservation is released.
Get startedThe API estimate for your exact request is authoritative before paid work starts.
Best fit
Use Sunburst for image creation and reference-guided edits through the same API contract.
Use cases
- Product campaign images
- Multi-reference image edits
Know before building
- Supports six sizes and low through max quality. Pricing is an estimate; final charges depend on input and output token usage.
Generated contract
Tasks, controls, and rates
Published rates
- image.create
- Varies by size, quality, prompt length (utf-8 bytes), input images
- $0.00474 / image$0.004745 minimum
- image.edit
- Varies by size, quality, prompt length (utf-8 bytes), input images
- $0.00474 / image$0.070281 minimum
Request controls
Lifecycle: queued -> running -> succeeded -> failed -> cancelled -> manual_review
Output fields: assets
Runnable examples
Estimate first, then create
Both requests use the same normalized task, model, and input payload. Creating work requires an API key and idempotency key.
1. Estimate
curl https://api.entirefeed.com/v1/estimate \
-X POST \
-H "Content-Type: application/json" \
-d '{
"task": "image.create",
"model": "gpt-image-2.5-sunburst",
"input": {
"quality": "low",
"size": "1024x1024",
"prompt": "A studio product photo of a running shoe with crisp material detail"
}
}'2. Create
curl https://api.entirefeed.com/v1/generations \
-X POST \
-H "Authorization: Bearer $ENTIREFEED_API_KEY" \
-H "Idempotency-Key: gpt-image-2.5-sunburst-example-001" \
-H "Content-Type: application/json" \
-d '{
"task": "image.create",
"model": "gpt-image-2.5-sunburst",
"input": {
"quality": "low",
"size": "1024x1024",
"prompt": "A studio product photo of a running shoe with crisp material detail"
}
}'