GPT-5 Image Mini is OpenAI's compact multimodal model, released 2025-10, that pairs GPT-5 Mini language capabilities with GPT Image 1 Mini for efficient image generation. It handles detailed image editing and text rendering with lower latency and cost than the full-size model, and suits applications needing both visual creation and text processing at scale.
This model is not routed on MirAPI yet — prices shown are the official list prices. Create an account to get notified when it goes live.
Modalities
inFileinImageinTextoutImage
Price / 1M
$2.50 / $2.00
Context
400K
Knowledge cutoff
—
Capabilities
ReasoningVisionLong contextPrompt cachingStructured output
Quick Start
import os from openai import OpenAI client = OpenAI( base_url="https://api.mirapi.ai/v1", # changed api_key=os.environ["MIRAPI_API_KEY"], # changed ) resp = client.chat.completions.create( model="openai/gpt-5-image-mini", messages=[{"role": "user", "content": "Hello"}], )
import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.mirapi.ai/v1", // changed apiKey: process.env.MIRAPI_API_KEY, // changed }); const res = await client.chat.completions.create({ model: "openai/gpt-5-image-mini", messages: [{ role: "user", content: "Hello" }], });
curl https://api.mirapi.ai/v1/chat/completions \ -H "Authorization: Bearer $MIRAPI_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "openai/gpt-5-image-mini", "messages": [{"role": "user", "content": "Hello"}] }'
Links
Wire GPT-5 Image Mini into your product
Start free1M free tokens to start · no card · OpenAI-compatible, one base_url change