GPT-5.4 Image 2 API: toman pricing and code
openai/gpt-5.4-image-2
visionreasoningjsonfilesimage outYou are billed for the usage the request actually reported. Prices follow the market. Cached input: 580,250 toman / 1M. Per generated image: 8.70 toman. Web search: 2,901.25 toman / request.Pricing and top-ups
GPT-5.4 Image 2 example: image generation
The example is picked from this model's own capabilities. Drop in your key and it runs as is.
curl https://api.uttapen.ir/v1/chat/completions \
-H "Authorization: Bearer sk-up-…" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-5.4-image-2",
"messages": [{"role": "user", "content": "A minimal photo of a coffee cup on a wooden table, natural light"}],
"modalities": ["image", "text"]
}'import base64
from openai import OpenAI
client = OpenAI(base_url="https://api.uttapen.ir/v1", api_key="sk-up-…")
resp = client.chat.completions.create(
model="openai/gpt-5.4-image-2",
messages=[{"role": "user", "content": "A minimal photo of a coffee cup on a wooden table, natural light"}],
extra_body={"modalities": ["image", "text"]},
)
# images are billed on image output tokens — check the balance before generating in bulk
for img in resp.choices[0].message.images or []:
data = img["image_url"]["url"].split(",", 1)[1]
open("out.png", "wb").write(base64.b64decode(data))
print("saved out.png")import OpenAI from "openai";
import { writeFileSync } from "node:fs";
const client = new OpenAI({ baseURL: "https://api.uttapen.ir/v1", apiKey: "sk-up-…" });
const resp = await client.chat.completions.create({
model: "openai/gpt-5.4-image-2",
messages: [{ role: "user", content: "A minimal photo of a coffee cup on a wooden table, natural light" }],
modalities: ["image", "text"],
});
for (const img of resp.choices[0].message.images ?? []) {
const b64 = img.image_url.url.split(",", 2)[1];
writeFileSync("out.png", Buffer.from(b64, "base64"));
}What is GPT-5.4 Image 2 good for?
The id for GPT-5.4 Image 2 in our API is "openai/gpt-5.4-image-2", served from OpenAI. Context is 272,000 tokens; past that you have to summarise the history yourself. A single response can run to 128,000 tokens. On price it sits in the "expensive" band — cheaper than 359 and dearer than 47 of the other paid models in the catalogue.
What it can do beyond plain text: it reads images directly, which makes it a real option for invoices, forms and screenshots; it takes files such as PDFs as input; it returns schema-valid JSON through response_format, ready to hand to your code; it has a reasoning mode that pays off on multi-step problems, maths and debugging; it can return generated images. All of it works through the standard parameters of the official OpenAI SDK — no custom client, no wrapper. Keep in mind that reasoning tokens are output tokens and do appear on the bill.
Pricing is 2,321,000 toman per 1M input tokens and 4,351,875 per 1M output tokens. A 1,000-word round trip on GPT-5.4 Image 2 lands near 8,675 toman. It supports cached input: repeated context is billed at 580,250 toman per 1M, which matters a lot if your system prompt is long. Each generated image costs around 8.70 toman. You are always charged for the usage the request actually reported, never for the estimate, and a failed request costs nothing.
The closest alternative with the same capabilities from a different provider is Sonar Pro: GPT-5.4 Image 2 works out roughly 1.3× more expensive, and its context window is larger. Both run on the same key and the same code, so trying the other one is a single string change.
To make the figure concrete: 100,000 toman of credit buys roughly 12 thousand-word requests on GPT-5.4 Image 2, and every 1,000 toman is about 115 words of round trip. A job with one million input tokens and one million output tokens comes to 6,672,875 toman in total. Filling this model's 272,000-token window costs 631,312 toman on the input side alone, which is the real reason to keep conversation history short.
Its nearest relative in the catalogue is "openai/gpt-5-image", and choosing between those two is where most people hesitate. On a thousand-word request this variant works out 1.2× dearer (8,675 against 7,543 toman). The context windows differ too: 272,000 against 400,000 tokens. On parameters, this one takes reasoning_effort while the other takes temperature, top_p.
OpenAI has 95 models in our catalogue; the cheapest is gpt-oss-20b at 60 toman per thousand words and the dearest o1-pro at 282,872. Among the less common parameters it accepts logit_bias, logprobs, reasoning_effort, top_logprobs — all through the standard request body. It does not support temperature, tool_choice, tools, top_p, which most models here do, so test before switching if your code relies on them. By context size the nearest option from another provider is Trinity Large Thinking at 262,144 tokens.
Good fits: work where the quality of the answer matters more than its cost, logic puzzles and code review, pulling text and fields out of images, extracting data against a fixed schema, analysing a long document or codebase in one request.
[GPT-5.4](https://openrouter.ai/openai/gpt-5.4) Image 2 combines OpenAI's GPT-5.4 model with state-of-the-art image generation capabilities from GPT Image 2. It enables rich multimodal workflows, allowing users to seamlessly move between reasoning, coding, and...
Three real jobs, priced on this model
Each figure is derived from the prices above and moves when they do.
| Job | Tokens | Cost |
|---|---|---|
| One chat turn with a medium history | 1,500 in + 400 out | 5,222 toman |
| Summarising a ten-page document | 4,000 in + 600 out | 11,895 toman |
| Classifying a thousand short rows | 120,000 in + 20,000 out | 365,558 toman |
Frequently asked
- How do I call GPT-5.4 Image 2 from Iran?
- Sign up with your mobile number, top the wallet up in toman, create an API key, then in the official OpenAI SDK point base_url at https://api.uttapen.ir/v1 and set model to "openai/gpt-5.4-image-2". Nothing else in your code changes.
- What does GPT-5.4 Image 2 cost in toman?
- 2,321,000 toman per 1M input tokens and 4,351,875 toman per 1M output tokens; a 1,000-word request is around 8,675 toman. You pay for the usage that request actually reported, and a failed request costs nothing.
- How much input does GPT-5.4 Image 2 take?
- Up to 272,000 tokens per request, roughly 204k words. A single answer can reach 128,000 tokens.
- Does GPT-5.4 Image 2 support streaming and image input?
- Streaming (stream=true) works on every model here. Image input is accepted through image_url, as a data URI or a public URL. Structured output through response_format works too.