Nano Banana
Description
Google's lightweight text-to-image model. Fast, high-quality visuals with versatile style support.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.08
per image
Hallucination rate
0%
Supported sizes
1k, 2k, 4k
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.08
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1k | $0.08 |
| 2k | $0.12 |
| 4k | $0.16 |
| auto | $0.08 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1k 2k 4k |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Service tiers
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -7/7
Overall ELO
1164
Rank
#15
Appearances
8,883
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
629 appearances · CI95 -27/27
1245
ELO
Subject People: Groups Activities
993 appearances · CI95 -22/22
1209
ELO
Subject Fantasy Mythical
1,348 appearances · CI95 -19/19
1204
ELO
Style Cartoon Illustration
727 appearances · CI95 -26/26
1193
ELO
Style General Photorealistic
3,604 appearances · CI95 -11/11
1188
ELO
Subject People: Portraits
1,075 appearances · CI95 -21/21
1178
ELO
Subject Nature Landscapes
873 appearances · CI95 -23/23
1158
ELO
Subject Physical Spaces
1,181 appearances · CI95 -20/20
1157
ELO
Style Vintage Retro
467 appearances · CI95 -32/32
1153
ELO
Style Anime
775 appearances · CI95 -25/25
1144
ELO
Subject Futuristic Sci-fi
1,188 appearances · CI95 -20/20
1137
ELO
Subject Commercial
558 appearances · CI95 -29/29
1133
ELO
Subject Text Typography
411 appearances · CI95 -34/34
1131
ELO
Style Graphic Design Digital Rendering
2,413 appearances · CI95 -14/14
1125
ELO
Subject Ui/ux Design
289 appearances · CI95 -41/41
1100
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: 'nano-banana',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);