纳米香蕉

支持文生图与图生图的快速图像生成

功能特性
  • 文生图生成
  • 图像到图像的转换
  • 多种宽高比
  • 快速生成(约5秒)
定价
4 (~$0.04)Per image
端点
POST/api/v1/images/generate
参数
参数类型必需描述
modelstring必需Must be "nano-banana"
promptstring必需Text description of the image to generate
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",
  "prompt": "A futuristic city at night with neon lights",
  "aspect_ratio": "16:9"
}
响应示例
{
  "success": true,
  "data": {
    "task_id": "task_abc123",
    "credits_used": 4,
    "remaining_credits": 496,
    "model": "nano-banana"
  }
}
代码示例
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",
    "prompt": "A futuristic city at night with neon lights",
    "aspect_ratio": "16:9"
  }'
Nano Banana Pro API