Models · Image
GPT-Image-2 Standard API
Was this page helpful?
GPT-Image-2 Standard is good for generating still images when you need its listed output sizes and aspect ratios.
Pricing
Default example: 1 image at 1K costs 3 credits, or $0.06 at the shared USD reference.
| Resolution | Unit | Credits | USD |
|---|---|---|---|
| 1K | Per image | 3 cr | $0.06 |
| 2K | Per image | 3 cr | $0.06 |
| 4K | Per image | 3 cr | $0.06 |
Accepted inputs
- Kind
- image
- Durations
- Not applicable
- Resolutions
- 1K, 2K, 4K
- Aspect ratios
- 1:1, 3:2, 2:3, 4:3, 3:4, 5:4, 4:5, 16:9, 9:16, 2:1, 1:2, 21:9, 9:21
- Defaults
- 1K · 1:1 · count 1
Sample request
The request uses the current default settings for this model and the public GenerateMediaRequest schema.
curl -X POST "https://reviral.ai/api/v1/generate-media" \
-H "Authorization: Bearer $REVIRAL_API_KEY" \
-H "Idempotency-Key: first-video" \
-H "Content-Type: application/json" \
--data '{"model":"gpt-image-2-standard","prompt":"A clean product photograph on a warm neutral background","size":"1K","aspectRatio":"1:1","count":1,"maxCredits":3}'Response and output
Accepted job
{
"data": {
"jobId": "550e8400-e29b-41d4-a716-446655440000",
"kind": "image",
"model": "gpt-image-2-standard",
"creditsCharged": 3,
"status": "queued",
"statusUrl": "/api/v1/jobs/550e8400-e29b-41d4-a716-446655440000"
}
}Ready job
{
"data": {
"jobId": "550e8400-e29b-41d4-a716-446655440000",
"kind": "image",
"model": "gpt-image-2-standard",
"creditsCharged": 3,
"status": "ready",
"statusUrl": "/api/v1/jobs/550e8400-e29b-41d4-a716-446655440000",
"outputUrls": [
"https://reviral.ai/signed-output"
]
}
}Error cases
404 model_not_available: the ID is no longer in the live catalog.409 price_changed: the current cost differs frommaxCredits.422 validation_error: duration, resolution, aspect ratio, size, or count is not accepted.429 rate_limit_exceeded: wait forRetry-Afterbefore retrying.
Frequently asked questions
- How much does the GPT-Image-2 Standard API cost?
- The default 1 image at 1K costs 3 credits, about $0.06 at the shared USD reference. Read the live models endpoint before submitting.
- Which inputs does GPT-Image-2 Standard accept?
- It accepts a prompt, listed size and aspect ratio, and an image count from 1 to 4 subject to the model limit. Reference inputs are not available through this v1 endpoint.
- How do I retrieve GPT-Image-2 Standard output?
- Poll the returned status URL until the job is ready, then download the signed output URL or URLs before they expire.