Runbase

Command Palette

Search for a command to run...

Gemini

Nano Banana 2

ID:google/nano-banana-2

Google 推出的 Nano Banana 2 图片生成 API —— 基于 Gemini 3.1 Flash,支持 4K 输出、15 种画面比例、最多 5 个角色一致性。

文生图图片编辑参考图4K文字渲染

概览

Google 推出的 Nano Banana 2 图片生成 API —— 基于 Gemini 3.1 Flash,支持 4K 输出、15 种画面比例、最多 5 个角色一致性。

认证

所有 API 请求需要通过 Authorization 请求头以 Bearer 方式传递有效的 API 密钥。

快速开始

凭证

设置 RUNBASE_API_KEY 环境变量。

Shell
export RUNBASE_API_KEY=your-api-key

创建运行

Shell
curl -s https://runbase.net/api/v1/runs \
  -H "Authorization: Bearer $RUNBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/nano-banana-2",
    "input": {
      "prompt": "一张陶瓷台灯的电影级产品照片"
    }
  }'

运行记录

运行以异步方式处理。提交请求后,轮询获取结果。

创建运行

Shell
curl -s https://runbase.net/api/v1/runs \
  -H "Authorization: Bearer $RUNBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/nano-banana-2",
    "input": { "prompt": "一张陶瓷台灯的电影级产品照片" }
  }'

获取运行状态

Shell
curl -s https://runbase.net/api/v1/runs/RUN_ID \
  -H "Authorization: Bearer $RUNBASE_API_KEY"

获取结果

轮询状态接口,直到 status 为 "succeeded",然后从响应中读取 output.urls。

输入 Schema

参数类型必填描述
promptstring必填Prompt
aspect_ratiostring可选Aspect ratio选项: 1:11:41:82:33:23:44:14:34:55:48:19:1616:921:9auto
resolutionstring可选Resolution选项: 1K2K4K
image_urlsstring[]可选Reference images

输出 Schema

字段类型描述
urlsstring[]生成的输出 URL

错误

API 使用标准 HTTP 状态码表示成功或失败。

状态码描述
400無效請求 - 缺少或格式錯誤的參數
401驗證失敗 - 缺少或無效的 API 金鑰
402點數不足
403禁止存取 - IP 不被允許或 API 金鑰消費上限已超過
404找不到執行紀錄
429超過速率限制
500內部伺服器錯誤