import requests r = requests.post( "https://api.aimlapi.com/v1/images/generations", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "openai/gpt-image-1-mini", "prompt": "A cat holding a sign that says hello" }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/images/generations", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "openai/gpt-image-1-mini", "prompt": "A cat holding a sign that says hello" }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/images/generations \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"openai/gpt-image-1-mini","prompt":"A cat holding a sign that says hello"}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
| Cached input |
Text prompt $2.6/1M · cached text $0.26/1M · generated image tokens $10.4/1M (image input tokens $3.25/1M, cached image tokens $0.325/1M).
| Benchmark | Score | What it measures | Source | Retrieved |
|---|---|---|---|---|
| Text-to-Image Arena | 1085 (Elo) | Human preference Elo from blind pairwise comparisons of generated images, measured independently by Artificial Analysis | Source | July 16, 2026 |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
GPT Image 1 Mini This page | Image generation at scale | |||
| Image generation at scale | ||||
| Image generation at scale | ||||
| Image generation at scale | ||||
| Image generation at scale |
GPT Image 1 Mini takes image, text as input and returns image.
GPT Image 1 Mini is priced at input $2.6 / 1M tokens, output $10.4 / 1M tokens, cached input $0.26 / 1M tokens.
GPT Image 1 Mini is billed per token, charged separately for input and output.
Yes, GPT Image 1 Mini accepts image input as well as a text prompt.
GPT Image 1 Mini was built by OpenAI.
Send a request to https://api.aimlapi.com/v1/images/generations with openai/gpt-image-1-mini as the model id.
Yes. GPT Image 1 Mini is served through AI/ML API, so the same key and endpoint format used for other models applies.
It generates images from text prompts, functioning as a text-to-image model.