Back to modelsGoogle
Buy Plan
Google
Nano Banana Pro (Gemini 3 Pro Image)
Nano Banana Pro is Google's most advanced image-generation and editing model, built on Gemini 3 Pro. 计价类型: multimodal
Quick Stats
Context
66K
Max Output
33K
Provider
Specs
2
Modalities
in imagein textout imageout text
Specs & List Price (per 1M tokens)
Quality
Input $2Output $120Image out $120
Value
Input $1Output $60Image out $60
Recommended Plan
Nano Banana Pro (Gemini 3 Pro Image) Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
google/gemini-3-pro-imagecURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-3-pro-image",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="google/gemini-3-pro-image",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.