Back to models
Google

Nano Banana (Gemini 2.5 Flash Image)

Gemini 2.5 Flash Image ("Nano Banana") is state-of-the-art native image generation and editing for fast creative workflows. 计价类型: multimodal

Quick Stats

Context

33K

Max Output

33K

Provider

Google

Specs

2

Modalities

in imagein textout imageout text

Specs & List Price (per 1M tokens)

Quality
Input $0.3Output $0.039Image out $0.039
Value
Input $0.15Output $0.0195Image out $0.0195

Recommended Plan

Nano Banana (Gemini 2.5 Flash Image) Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDgoogle/gemini-2.5-flash-image

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/gemini-2.5-flash-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-2.5-flash-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.