Back to modelsGoogle
Buy Plan
Google
Gemini 2.5 Pro
Gemini 2.5 Pro is Google's most advanced model for complex tasks, featuring deep reasoning and coding capabilities.
Quick Stats
Context
1049K
Max Output
66K
Provider
Specs
2
Modalities
in textin imagein filein audioin videoout text
Specs & List Price (per 1M tokens)
Quality
Input $1.25Output $10Cache read $0.125
Value
Input $0.625Output $5Cache read $0.0625
Recommended Plan
Gemini 2.5 Pro Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
google/gemini-2.5-procURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-2.5-pro",
"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-pro",
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.