← ALL UPDATES
GEMINI March 5, 2026

Gemini Grounding with Google Search Free Up to 1,500 Queries/Day

WHAT CHANGED

Google made the Search grounding feature free for Gemini API users up to 1,500 queries per day, letting the model cite real-time web sources.

WHY IT MATTERS

Build news trackers, research tools, or any app needing live web data without paying for a separate search API. Major free-tier advantage over competitors.

HOW TO USE IT

Add google_search_retrieval to your tools list in any Gemini API call. No additional billing setup needed under the free quota.

GEMINI / PYTHON
import google.generativeai as genai

genai.configure(api_key=os.environ["GEMINI_API_KEY"])
model = genai.GenerativeModel("gemini-2.5-pro")

response = model.generate_content(
    "What happened in AI this week?",
    tools=[{"google_search_retrieval": {}}]
)
print(response.text)

# Access source citations
for chunk in response.candidates[0].grounding_metadata.grounding_chunks:
    print(f"Source: {chunk.web.uri}")
groundingsearchfree-tierapi
ORIGINAL SOURCE
https://ai.google.dev/gemini-api/docs/grounding
VIEW ORIGINAL SOURCE →

Grounding effectively gives Gemini a live internet connection for free within generous daily limits. For indie builders this eliminates the need for a separate Serper or Bing Search API subscription when building AI apps that need current information.

← BACK TO UPDATES