Gemini 3.1 Pro Preview Search
Google logo

Gemini 3.1 Pro Preview Search

gemini-3.1-pro-preview-search
Google
Gemini-3.1-pro-preview-search integrates Google's official search functionality; the search feature incurs an additional separate fee log directly incorporated into the scoring, but the log details are not displayed; this will be fixed in the future to show the details; it only supports OpenAI-compatible format calls and does not support the Gemini SDK; for the Gemini native SDK, please directly set the official search parameters.

Pricing

TierPricingCache ReadWeb SearchCache Storage
Input<=200K
$2.000$12.000
$0.2/M tokens$0.014/request$4.5/h/M tokens
200K<Input
$4.000$18.000
$0.4/M tokens$0.014/request$4.5/h/M tokens

Input Modalities

  • Text
  • Vision
  • Audio
  • Video

Output Modalities

  • Text

Capabilities

  • Thinking
  • Web
  • DeepSearch
  • Tools
  • Tool calling
  • Structured outputs
  • Long context

Providers

VertexAI gemini-3.1-pro-preview-search
Pricing$2.000$12.000
Cache Read$0.2/M tokens
Web Search$0.014/request
Cache Storage$4.5/h/M tokens
Pricing$4.000$18.000
Cache Read$0.4/M tokens
Web Search$0.014/request
Cache Storage$4.5/h/M tokens
Context1M
Max output64K
Latency72.4S
Throughput84.1TPS
Uptime
100.00% uptime 2 days ago
96.61% uptime yesterday
98.22% uptime today
Google AI Studio gemini-3.1-pro-preview-search
Pricing$2.000$12.000
Cache Read$0.2/M tokens
Web Search$0.014/request
Cache Storage$4.5/h/M tokens
Pricing$4.000$18.000
Cache Read$0.4/M tokens
Web Search$0.014/request
Cache Storage$4.5/h/M tokens
Context1M
Max output64K
Latency9.1S
Throughput67.0TPS
Uptime
50.00% uptime 2 days ago
12.36% uptime yesterday
21.17% uptime today

Performance for gemini-3.1-pro-preview-search

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="gemini-3.1-pro-preview-search",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is Gemini 3.1 Pro Preview Search?

Gemini-3.1-pro-preview-search integrates Google's official search functionality; the search feature incurs an additional separate fee log directly incorporated into the scoring, but the log details are not displayed; this will be fixed in the future to show the details; it only supports OpenAI-compatible format calls and does not support the Gemini SDK; for the Gemini native SDK, please directly set the official search parameters.