Back to Models

Gemini 3 (Nano Banana 2 Pro)

google/gemini-3-pro-image
Google Image Generation

Description

Gemini 3 (Nano Banana 2 Pro) by Google. This model supports image capabilities. Main use: Image Generation.

Specifications

Input Modalities:
Text
Output Modalities:
Image
Main Use:
Image Generation

Pricing

Per Image (1MP) Cost:
0.26800000 Credits
Images (1MP) per credit:
3.73

Usage Example

const { Client } = require('ai-proxy-sdk');

const client = new Client({
  consumerKey: process.env.BITMESH_CONSUMER_KEY,
  consumerSecret: process.env.BITMESH_CONSUMER_SECRET
});

const response = await client.images.generate({
  prompt: 'Flying car',
  model: 'google/gemini-3-pro-image',
  width: 1024,
  height: 1024,
  seed: 22,
  n: 1,
  steps: 20
});