gpt-image-1-mini
NixAPI price, from
USD per 1M tokens · via group Azure-Gpt-1 · Official list price $2 / $8Save 93%
About gpt-image-1-mini
gpt-image-1-mini is our lightweight image generation model.
Price by routing group
Pick a group in the console when you create a key. Status is live from the router. Live status by group →
| Group | Group status | Model status | Multiplier | Input | Output | Cache read | Cache write |
|---|---|---|---|---|---|---|---|
Azure-Gpt-1 | … | ×0.0744 | $0.1487 | $0.5949 | — | — | |
Azure-Gpt-2 | … | ×0.169 | $0.338 | $1.352 | — | — | |
Azure-Gpt-3 | … | ×0.3718 | $0.7436 | $2.974 | — | — | |
Azure-Gpt-4 | … | ×0.7436 | $1.487 | $5.949 | — | — | |
Azure-Gpt-5 | … | ×1.014 | $2.028 | $8.112 | — | — |
USD per 1M tokens
Supported endpoints
Call gpt-image-1-mini in one request
Works with the OpenAI SDK and any OpenAI-compatible client. Replace the key with your own.
curl https://api.nixapi.com/v1/images/generations \
-H "Authorization: Bearer $NIXAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "gpt-image-1-mini", "prompt": "A lighthouse at dawn, watercolor", "size": "1024x1024"}'from openai import OpenAI
client = OpenAI(base_url="https://api.nixapi.com/v1", api_key="sk-…")
img = client.images.generate(model="gpt-image-1-mini", prompt="A lighthouse at dawn, watercolor", size="1024x1024")
print(img.data[0].url or img.data[0].b64_json[:40])import OpenAI from 'openai';
const client = new OpenAI({ baseURL: 'https://api.nixapi.com/v1', apiKey: process.env.NIXAPI_KEY });
const img = await client.images.generate({ model: "gpt-image-1-mini", prompt: 'A lighthouse at dawn, watercolor', size: '1024x1024' });
console.log(img.data[0].url);Questions about gpt-image-1-mini
How much does gpt-image-1-mini cost on NixAPI?
From $0.1487 per 1M input tokens and $0.5949 per 1M output tokens in the Azure-Gpt-1 group, about 93% below the official list price. Prices are pay-as-you-go in USD with no monthly minimum.
How do I call gpt-image-1-mini?
Point any OpenAI-compatible client at https://api.nixapi.com/v1, use your NixAPI key and set the model to "gpt-image-1-mini".
Which routing groups serve gpt-image-1-mini?
gpt-image-1-mini is available in 5 routing groups: Azure-Gpt-1, Azure-Gpt-2, Azure-Gpt-3, Azure-Gpt-4, Azure-Gpt-5. The lowest price is in Azure-Gpt-1.