GPT Image 1 Mini
Description
Cost-efficient OpenAI image model via Wavespeed.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.02
per image
Hallucination rate
0%
Supported sizes
1024x1024
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.02
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1024 | $0.02 |
| auto | $0.02 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1024x1024 |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -11/11
Overall ELO
1072
Rank
#53
Appearances
3,784
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
261 appearances · CI95 -43/43
1226
ELO
Style Vintage Retro
174 appearances · CI95 -53/53
1140
ELO
Subject Nature Landscapes
415 appearances · CI95 -34/34
1123
ELO
Subject People: Portraits
439 appearances · CI95 -33/33
1112
ELO
Style General Photorealistic
1,516 appearances · CI95 -18/18
1083
ELO
Subject People: Groups Activities
438 appearances · CI95 -34/34
1078
ELO
Subject Fantasy Mythical
574 appearances · CI95 -29/29
1074
ELO
Subject Text Typography
134 appearances · CI95 -61/61
1070
ELO
Style Cartoon Illustration
331 appearances · CI95 -38/38
1068
ELO
Subject Commercial
208 appearances · CI95 -48/48
1062
ELO
Subject Futuristic Sci-fi
503 appearances · CI95 -31/31
1053
ELO
Subject Physical Spaces
463 appearances · CI95 -32/32
1040
ELO
Style Anime
283 appearances · CI95 -42/42
1026
ELO
Style Graphic Design Digital Rendering
1,045 appearances · CI95 -21/21
1018
ELO
Code Samples
Quick start with the Routeway API
const response = await fetch('https://api.routeway.ai/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer <YOUR_API_KEY>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gpt-image-1-mini',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);