Nano Banana 是 Google 给 Gemini 图像模型起的名字。Nano Banana Pro 即 Gemini 3 Pro Image,主打高保真;Nano Banana 2 即 Gemini 3.1 Flash Image,主打速度。Google 两者都按张计费,分辨率越高越贵。这一页把 Google 官方挂牌价与 APIMODELS 的实收价逐档摆在一起,也讲清楚为什么同一个 Google 模型在这里有不止一个模型 id —— 这个选择既影响价格,也影响提示词被拒的概率。
Google 官方挂牌价(2026-09-26 核实,自 7 月以来未变):Gemini 3 Pro Image 1K 或 2K 每张 $0.134、4K $0.24;Gemini 3.1 Flash Image 512px $0.045、1K $0.067、2K $0.101、4K $0.151。Google 的 Batch API 在此基础上打五折,但批处理要排队、最长可达一天,而这里的每个请求都是实时的。
Nano Banana Pro 有三个 id。gemini-3-pro-image 是 Google 的 GA 正式版:1K 或 2K 每张 $0.10、4K $0.15,近 30 天因内容原因被拒的提示词只占 3.6%。gemini-3-pro-image-preview 更便宜,1K 或 2K $0.068、4K $0.13,但走的是另一条渠道,内容过滤更严:同期有 12.5% 的提示词被拒。Google 已于 2026-06-25 在其官方 API 上停用 preview id,我们为已有接入继续保留它。gemini-3-pro-image-gemini 是低价渠道,任何分辨率一律每张 $0.03,但速度慢,耗时中位数约 93 秒。
Nano Banana 2 的选择类似。gemini-3.1-flash-image 是 GA 正式版:512px $0.04、1K 或 2K $0.06、4K $0.10。1K 和 2K 同价,所以 2K 相当于免费升级,并且比 Google 的 $0.101 低 41%。gemini-3.1-flash-image-preview 是 1K 或 2K $0.05、4K $0.08,同样走过滤更严的渠道。
一条简单的规则:默认用 GA id。只有在对成本敏感、而且提示词很少涉及人物、品牌等容易触发内容过滤的元素时,才选 preview id。$0.03 的低价渠道只适合能等的批量任务。
近 30 天外部生产流量(已剔除内部账号)。成功率按全部请求计算,包括被内容过滤拒绝的提示词,拒绝率单独列出。请求失败一律不计费。
| 模型 id | 调用次数 | 成功率 | 被内容过滤拒绝 | 中位耗时 | p95 |
|---|---|---|---|---|---|
| gemini-3-pro-image | 504 | 96.0% | 3.6% | 40.4 秒 | 154.4 秒 |
| gemini-3-pro-image-preview | 23,194 | 87.3% | 12.5% | 33.5 秒 | 88.1 秒 |
| gemini-3-pro-image-gemini | 2,114 | 89.2% | 3.9% | 92.8 秒 | 241.7 秒 |
| gemini-3.1-flash-image | 2,828 | 98.6% | 1.3% | 32.1 秒 | 70.2 秒 |
| gemini-3.1-flash-image-preview | 1,317 | 87.9% | 10.5% | 32.7 秒 | 95.0 秒 |
Gemini 2.5 Flash Image 在这里每张 $0.02,Google 官方 $0.039。Google 已宣布将于 2026-10-02 停用该模型,所以不建议在它上面做新开发。1K 或 2K 每张 $0.06 的 Nano Banana 2 是自然的替代。
Price per image — Google list vs APIMODELS, verified 2026-09-26
512px 1K 2K 4K
Nano Banana Pro (Gemini 3 Pro Image)
Google (list) -- $0.134 $0.134 $0.24
Google Batch API (queued) -- $0.067 $0.067 $0.12
gemini-3-pro-image -- $0.10 $0.10 $0.15 -25% / -37.5%
gemini-3-pro-image-preview -- $0.068 $0.068 $0.13 -49% / -46%
gemini-3-pro-image-gemini -- $0.03 $0.03 $0.03 slow channel
Nano Banana 2 (Gemini 3.1 Flash Image)
Google (list) $0.045 $0.067 $0.101 $0.151
Google Batch API (queued) $0.022 $0.034 $0.050 $0.076
gemini-3.1-flash-image $0.04 $0.06 $0.06 $0.10 2K -41%
gemini-3.1-flash-image-preview -- $0.05 $0.05 $0.08 2K -50%
Per image, real time. Failed requests are not billed.
Reference (input) images are not charged separately.cURL
# Step 1: create the task
curl -X POST https://api.apimodels.app/v1/images/generations \
-H "Authorization: Bearer $APIMODELS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-pro-image",
"prompt": "A product photo of a ceramic mug on a linen tablecloth, soft window light",
"aspect_ratio": "16:9",
"resolution": "2k"
}'
# Step 2: poll until state is completed
curl "https://api.apimodels.app/v1/images/generations?task_id=TASK_ID" \
-H "Authorization: Bearer $APIMODELS_API_KEY"Python
import requests, time
H = {"Authorization": "Bearer YOUR_APIMODELS_KEY"}
URL = "https://api.apimodels.app/v1/images/generations"
task = requests.post(URL, headers=H, json={
"model": "gemini-3.1-flash-image", # 2K costs the same as 1K here
"prompt": "Isometric illustration of a tiny coffee shop, pastel colors",
"aspect_ratio": "16:9",
"resolution": "2k",
}).json()["data"]["taskId"]
while True:
r = requests.get(URL, headers=H, params={"task_id": task}).json()["data"]
if r["state"] in ("completed", "failed"):
break
time.sleep(3)
print(r)Google 官方价:Nano Banana Pro(Gemini 3 Pro Image)1K 或 2K 每张 $0.134、4K $0.24;Nano Banana 2(Gemini 3.1 Flash Image)1K、2K、4K 分别 $0.067、$0.101、$0.151。在 APIMODELS 上,gemini-3-pro-image 是 $0.10 / $0.10 / $0.15,gemini-3.1-flash-image 是 $0.06 / $0.06 / $0.10,另有更便宜的 preview id 和低价渠道,见上文。
同一个 Google 模型家族,不同渠道。GA id 在 1K 或 2K 每张 $0.10,近 30 天因内容原因拒绝了 3.6% 的提示词;preview id 每张 $0.068,但渠道的过滤更严,拒绝了 12.5%。被拒的请求不计费,但你要多重试一次。默认用 GA,价格比偶尔被拒更重要时再用 preview id。
这就是这里的定价方式。Google 1K 收 $0.067、2K 收 $0.101;这里两档都是 $0.06,于是 2K 比 Google 挂牌价低 41%。如果你原本为省钱只出 1K,在这里出 2K 价格不变。
有时是,这一点值得知道。Google 的 Batch API 在挂牌价上打五折:Pro 1K 或 2K 每张 $0.067,3.1 Flash 2K 每张 $0.050,和这里的部分价格持平甚至更低。代价是时间:批处理要排队,最长可达 24 小时。凡是交互式或面向终端用户的场景,应当拿本页的实时价格来比。
Google 已宣布将于 2026-10-02 停用 Gemini 2.5 Flash Image。在此之前这里每张 $0.02,但不建议再在它上面开始新开发。替代是 Gemini 3.1 Flash Image:质量更好,1K 或 2K 每张 $0.06。
不需要。在 apimodels.app 注册、创建 API key,调用 https://api.apimodels.app/v1/images/generations 即可。不用建 Google Cloud 项目、不用配结算、不用选区域,中国大陆可直连,同一个 key 和美元余额还能调用平台上其他所有图像、视频和语言模型。