Nano Banana Pro

高品质图像生成,分辨率最高支持4K

功能特性
  • 文本到图像生成
  • 图像到图像的转换
  • 多种分辨率(1K/2K/4K)
  • 更高质量的输出
定价
ResolutionCredits
1K6 (~$0.07)
2K9 (~$0.10)
4K15 (~$0.17)
端点
POST/api/v1/images/generate
参数
参数类型必需描述
modelstring必需Must be "nano-banana-pro"
promptstring必需Text description of the image to generate
resolutionstring可选"1K", "2K", or "4K"
negative_promptstring可选What to avoid in the image
aspect_ratiostring可选"1:1", "16:9", "9:16", "4:3", "3:4"
input_imagestring可选URL or base64 for image-to-image
num_imagesnumber可选Must be 1
请求示例
{
  "model": "nano-banana-pro",
  "resolution": "2K",
  "prompt": "A majestic dragon flying over a medieval castle",
  "aspect_ratio": "16:9"
}
响应示例
{
  "success": true,
  "data": {
    "task_id": "task_xyz789",
    "credits_used": 9,
    "remaining_credits": 491,
    "model": "nano-banana-pro"
  }
}
代码示例
curl -X POST https://gateway.nanobananapro.site/api/v1/images/generate \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "nano-banana-pro",
    "resolution": "2K",
    "prompt": "A majestic dragon flying over a medieval castle",
    "aspect_ratio": "16:9"
  }'
Nano Banana Pro API