OpenAI

GPT Image 1.5

Image
Not available
Generate Now

OpenAI GPT Image 1.5 text-to-image generation via Kie AI.

Type
Text to Image
Billed
per img
Provider
OpenAI

Pricing

/ img
Quality: Medium$0.03 / img
Quality: High$0.14 / img

Supported parameters

modelSettings
  • Promptprompt
  • Aspect Ratioaspect_ratio
  • Qualityquality

Code examples

POST /v1/generations

Generations are async — the request returns immediately with an id; poll for the result.

python
import requests

response = requests.post(
    "https://api.modelstack.cc/v1/generations",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
    json={
        "type": "TEXT_TO_IMAGE",
        "prompt": "A serene mountain landscape at sunset",
        "model": "openai/gpt-image-1.5",
        "modelSettings": {
            "aspect_ratio": "16:9"
        }
    },
)
generation_id = response.json()["data"]["id"]

# Poll for the result
result = requests.get(
    f"https://api.modelstack.cc/v1/generations/{generation_id}",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])

Related models

Frequently asked questions

How is GPT Image 1.5 billed on ModelStack?expand_more
GPT Image 1.5 (Text to Image) is billed at a flat, prepaid rate of $0.03 / img — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does GPT Image 1.5 support?expand_more
Besides Text to Image, GPT Image 1.5 also supports: Image to Image.
Which parameters does GPT Image 1.5 support?expand_more
GPT Image 1.5 supports: Prompt, Aspect Ratio, Quality.
How can I generate with GPT Image 1.5?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `openai/gpt-image-1.5` and type `TEXT_TO_IMAGE` — see the code example above.