TokenLX
GEMINI

google/gemini-3-pro-image

$2.00/M tokens input$120.00/M tokens output4.02B  tokens servedImage

Gemini Pro — Google's higher-quality Gemini tier. Strong reasoning with large context windows.

Key strengths

  • Strong reasoning
  • 1M+ context
  • Multimodal
  • Good for research

Use cases

  • Deep analysis
  • Long-context reasoning
  • Multimodal workflows
  • Complex QA
multimodallong-context

Google's google/gemini-3-pro-image is a state-of-the-art text-to-image generation model. It produces highly detailed, photorealistic and stylized imagery from natural-language prompts, with strong instruction following and accurate text rendering inside generated images.

Compatible with the OpenAI `/images/generations` endpoint shape, supporting prompt, size, seed, negative prompt, and resolution controls. Excellent for creative workflows, marketing assets, product visualization, and concept art at scale.

google/gemini-3-pro-image is fully OpenAI-compatible — drop in your existing OpenAI Python or Node SDK and switch `baseURL` to `https://api.tokenlx.ai`. TokenLX transparently routes your requests to the optimal provider endpoint while preserving streaming, function-calling, and structured-output semantics.

Performance

Compare different providers across TokenLX · All locations.

Throughput
54
tok/s
Latency
120
ms
E2E Latency
195
ms
Tool Call Errors
0.08
%
Output Errors
0.36
%
Time to First Token
101
ms

Effective Pricing

Actual cost per million tokens across providers over the past 7 days.

Input
$2.00
per 1M tokens
7d agotoday
Output
$120.00
per 1M tokens
7d agotoday
Input tiers
0M - 0.2M$2.00per 1M tokens
Output tiers
0M - 0.2M$120.00per 1M tokens

Recent activity

Total usage per day on TokenLX (last 30 days).

Prompt
1.41B
Completion
2.61B
30d ago15d agotoday

Sample code & API

TokenLX normalizes requests and responses across providers. Use any OpenAI SDK or our native SDK.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.tokenlx.ai/v1",
    api_key="sk-tokenlx-...",
)

response = client.images.generate(
    model="gemini-3-pro-image",
    prompt="A futuristic city skyline at sunset, photorealistic",
    size="1024x1024",
    n=1,
)
print(response.data[0].url)

Replace sk-aihubrouter-… with your key from the dashboard.