OpenAIReleased on Jan 1, 2025

GPT Image 1 Mini: Benchmarks, Pricing & Context Window

GPT Image 1 Mini is a image generation model from OpenAI, released in January 2025.

A cost-efficient version of GPT Image 1. Natively multimodal language model that accepts both text and image inputs, and produces image outputs.

Input
TextImage
Output
Image

GPT Image 1 Mini examples

Recent arena outputs from GPT Image 1 Mini, picked from the highest-ranked matchups.

GPT Image 1 Mini API

POST/v1/generations

Set for image-to-image / editing models.

Run a request to see the response

Use it in your code

OpenAI-compatible endpoint through the LLM Stats gateway.

import requests

# Create the generation. wait="auto" long-polls (up to 60s) so most short
# jobs return as "completed" in a single round-trip.
res = requests.post(
    "https://gateway.llm-stats.com/v1/generations",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "model": "gpt-image-1-mini",
        "input": {"prompt": "A beautiful sunset over mountains"},
        "wait": "auto",
    },
)
job = res.json()

# If it didn't finish inside the wait window, poll the same resource.
while job["status"] in ("queued", "running"):
    res = requests.get(
        f"https://gateway.llm-stats.com/v1/generations/{job['id']}",
        params={"wait": 60},
        headers={"Authorization": "Bearer YOUR_API_KEY"},
    )
    job = res.json()

if job["status"] == "completed":
    print("image:", job["output"]["media"][0]["url"])
else:
    print("Failed:", job["error"]["message"])

Need an API key? Create one above in the playground, or read the API documentation.

GPT Image 1 Mini pricing

Providers

GPT Image 1 Mini starts at $0.0100 per generated image via OpenAI.

ProviderPrice $/imageLatency sInputOutput
OpenAI logoOpenAI
$0.0100

GPT Image 1 Mini benchmarks

Image Arena Performance

Performance by category and language

Where GPT Image 1 Mini is strongest across prompt themes and languages. Conservative TrueSkill score (μ − 3σ), only axes with 3+ votes.

Leaderboard Rankings

Quality Tracker

Similar Models

How GPT Image 1 Mini compares to its closest neighbors on each image arena it competes in.

Notice missing or incorrect data?

GPT Image 1 Mini license

GPT Image 1 Mini is released under the Proprietary license, which restricts commercial use.

License
Proprietary
Non-commercial

Proprietary license - usage restrictions apply

Models like GPT Image 1 Mini

Other image models ranked closest to GPT Image 1 Mini.

FAQ

Common questions about GPT Image 1 Mini.

Who created GPT Image 1 Mini?

GPT Image 1 Mini was created by OpenAI.

What is the license for GPT Image 1 Mini?

GPT Image 1 Mini is released under the Proprietary license.

Is GPT Image 1 Mini multimodal?

Yes, GPT Image 1 Mini is a multimodal model that can process both text and images as input.