Back to model hub

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-1.5折
BillingPer call
Latency
22.55s
Throughput
58.76tokens/s
Uptime
100.00%
1K / call
¥0.14
2K / call
¥0.14
4K / call
¥0.25
官KEY-2.5折
BillingPer call
Latency
3.35s
Throughput
0tokens/s
Uptime
0.00%
1K / call
¥0.23
2K / call
¥0.23
4K / call
¥0.42
官KEY-3.5折
BillingPer call
Latency
Throughput
Uptime
1K / call
¥0.33
2K / call
¥0.33
4K / call
¥0.59
官KEY-4.5折
BillingPer call
Latency
Throughput
Uptime
1K / call
¥0.42
2K / call
¥0.42
4K / call
¥0.76
官KEY-5.5折
BillingPer call
Latency
Throughput
Uptime
1K / call
¥0.52
2K / call
¥0.52
4K / call
¥0.92
官KEY-7.5折
BillingPer call
Latency
Throughput
Uptime
1K / call
¥0.70
2K / call
¥0.70
4K / call
¥1.26
官KEY-正价
BillingPer call
Latency
7.17s
Throughput
30tokens/s
Uptime
16.67%
1K / call
¥0.94
2K / call
¥0.94
4K / call
¥1.68

Gemini 3 Pro Image Preview — Performance

Compare throughput, latency, end-to-end latency, and error rate across channels.

Throughput
Latency
End-to-end latency
Structured output error rate

Gemini 3 Pro Image Preview — Uptime

Shows aggregated uptime and least stable provider uptime over time.

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://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"
      }
    }
  }'