LLM Reference
OpenAI API

Using GPT Image 1 Mini on OpenAI API

Implementation guide · GPT Image · OpenAI

Serverless

OpenAI API exposes GPT Image 1 Mini through model ID gpt-image-1-mini. Use the setup steps, sourced pricing, capabilities, and official provider links below to validate this route before deployment.

Last refreshed 2026-05-10. Next refresh: weekly.

Quick Start

  1. 1
    Create an account at OpenAI API and generate an API key.
  2. 2
    Use the OpenAI API SDK or REST API to call gpt-image-1-mini — see the documentation for request format.
  3. 3
    You'll be billed $0.011 per 1024x1024 medium image. See full pricing.

Code Examples

Install
pip install openai
API key
OPENAI_API_KEY
Model ID
gpt-image-1-mini

Use the model slug directly, e.g. "gpt-4o" or "gpt-4.1-mini".

import os
from openai import OpenAI

client = OpenAI()  # reads OPENAI_API_KEY from env
response = client.chat.completions.create(
    model="gpt-image-1-mini",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Pricing on OpenAI API

TypeRate
1024x1024 imageLow $0.005 / Medium $0.011 / High $0.036
Portrait / landscape imageLow $0.006 / Medium $0.015 / High $0.052

Capabilities

VisionMultimodal

About GPT Image 1 Mini

GPT Image 1 Mini is OpenAI's cost-efficient image generation model, released at OpenAI DevDay 2025 on October 6, 2025. Approximately 80% cheaper than GPT Image 1 with per-image pricing at $0.005/$0.011/$0.036 (low/medium/high, 1024×1024). Targets high-volume, cost-sensitive API workflows. Supports the same quality tiers as the main GPT Image line.

Model Specs

Released2025-10-06
ArchitectureAutoregressive Image

Provider

OpenAI API
OpenAI API

OpenAI

San Francisco, California, United States