Skip to content
Googlegemini-2.5-pro

Gemini 2.5 Pro

Google's most capable model, multimodal and reasoning-ready.

Gemini 2.5 Pro combines reasoning with strong multimodal understanding and a million-token context, reachable through the same Chat Completions interface.

MultimodalLong contextReasoning

Specs

Context window1.0M tokens
Max output66K tokens
InterfaceOpenAI-style Chat Completions · Anthropic-style Messages
Price / 1M$1.06 / $8.50was $1.25 / $10

Capabilities

  • ReasoningSupported
  • VisionSupported
  • Tool callingSupported
  • StreamingSupported
  • JSON outputSupported

Why teams pick it

  • Reasoning with broad multimodal understanding
  • ~1M-token context for large inputs
  • Works with the standard Chat Completions interface

Call Gemini 2.5 Pro

Gemini 2.5 Pro answers on either API below — pick the one your code already speaks and just swap in your Inferray key.

/v1/chat/completions · OpenAI-style Chat Completions · openai SDK or plain HTTP

curl https://api.inferray.com/v1/chat/completions \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-2.5-pro",
    "messages": [{"role": "user", "content": "ship it"}]
  }'

/v1/messages · Anthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP

curl https://api.inferray.com/v1/messages \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-2.5-pro",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "ship it"}]
  }'