Back to model hub
gemini-3-pro-image-preview

gemini-3-pro-image-preview

Gemini/gemini-3-pro-image-preview
ImageGemini1K, 2K, 4Kgemini-3-pro-image-preview

Higher-quality Gemini image model with stronger composition and detail for production-oriented visuals.

gemini-3-pro-image-preview — Groups & pricing

Access groups for this site model, same-day runtime metrics, and per-resolution per-call prices from the console.

官Key-Tier 1

普速 RPM ≈ 5-10,满足少量并发需求

1K / call
¥0.22
2K / call
¥0.22
4K / call
¥0.35
官Key-Tier 2

快速 RPM ≈ 10-50,满足普通并发需求

1K / call
¥0.26
2K / call
¥0.26
4K / call
¥0.43
官Key-Tier 3

高速 RPM ≈ 50-500,满足高并发并发需求

1K / call
¥0.33
2K / call
¥0.33
4K / call
¥0.59
官Key-Tier 3 Ultra

全量 RPM > 1000,自动扩容,速率与稳定的极致追求

1K / call
¥0.70
2K / call
¥0.70
4K / call
¥1.26

Example code & API

Call OpenAI-compatible routes below. Replace the model field with this model’s routing code and paste an API key from the console into the Authorization header.

Traffic is proxied through the unified gateway; each model type maps to a different endpoint (chat, embeddings, images, rerank, speech, etc.), and the snippets switch automatically for the current type.

In production, set sensible timeouts and retries, and keep request identifiers from responses for debugging.

curl -X POST "https://api.bananarouter.com/v1beta/models/gemini-3-pro-image-preview:generateContent" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contents": [
      {
        "parts": [
          { "text": "Generate a futuristic cyberpunk city at night with cinematic lighting and ultra-high detail." }
        ]
      }
    ],
    "generationConfig": {
      "responseModalities": ["IMAGE"],
      "imageConfig": {
        "aspectRatio": "16:9"
      }
    }
  }'