VOOZH about

URL: https://apify.com/clearpath/google-ai-overview

⇱ Google AI Overview Scraper: Extract AI Summaries & Sources Β· Apify


πŸ‘ Google AI Overview Scraper: Extract AI Summaries & Sources avatar

Google AI Overview Scraper: Extract AI Summaries & Sources

Pricing

from $11.99 / 1,000 queries

Go to Apify Store

Google AI Overview Scraper: Extract AI Summaries & Sources

Extract Google's AI Overview summaries, cited sources, and organic results for any search query. Works best with question-style searches. Supports 52 countries and up to 10 queries per run.

Pricing

from $11.99 / 1,000 queries

Rating

1.0

(1)

Developer

πŸ‘ ClearPath

ClearPath

Maintained by Community

Actor stats

2

Bookmarked

105

Total users

42

Monthly active users

7 days ago

Last modified

Share

Google AI Overview Scraper on Apify.

No Google account. No API key. Just a search query.

Extract AI Overview summaries, cited sources, and organic search results from Google Search. Works best with question-style queries ("how does X work", "is X good for you"). Supports 52 countries.

πŸ‘ Output Example

Copy to your AI assistant

Copy this block into ChatGPT, Claude, Cursor, or any LLM to start using this actor.

clearpath/google-ai-overview on Apify. Call:ApifyClient("TOKEN").actor("clearpath/google-ai-overview").call(run_input={...}), then client.dataset(run["defaultDatasetId"]).list_items().items for results. Key inputs:query(string),url(string, Google Search URL),countryCode(string,default"US"). Full actor spec(input schema with all params/enums/defaults, output dataset fields,README):GEThttps://api.apify.com/v2/acts/clearpath~google-ai-overview/builds/default(Bearer TOKEN) β†’ inputSchema, actorDefinition.storages.dataset, readme. Pricing:PPE, $0.09 actor start + $0.012-$0.015/query. Get token: https://console.apify.com/account/integrations

How It Works

  1. Enter a search query (or paste a Google Search URL)
  2. The Actor searches Google and extracts AI Overview + organic results
  3. Structured JSON result is pushed to Apify's default dataset

That's it. No setup, no login, no browser needed on your end.

Quick Start β€” Google AI Overview Examples

Simple query

{
"query":"is coffee good or bad for you"
}

With Google Search URL

{
"url":"https://www.google.com/search?q=climate+change+effects&hl=en&gl=us"
}

Germany with AI Overview only

{
"query":"Was ist Quantencomputing",
"countryCode":"DE",
"includeOrganicResults":false
}

Which Queries Get AI Overviews?

Google generates AI Overviews mainly for question-style queries that ask "how", "what", "why", "is", etc. Not every search produces one.

Phrasing your query as a question significantly increases the chance of getting an AI Overview.

Query typeExampleAI Overview?
Health / science questions"is coffee good or bad for you"Yes
How-to questions"how to make pasta from scratch"Yes
Explainers"what is quantum computing"Yes
Recent events"who won the world series 2024"Yes
Shopping / products"nike air max 90"No
Weather / conversions"weather in new york", "USD to EUR"No
Local searches"best restaurants in paris"No

When no AI Overview is available, the Actor still returns organic search results (if enabled).


Input Parameters

ParameterTypeDescriptionDefault
querystringA search query to look up on Google.β€”
urlstringOr a full Google Search URL to scrape directly.β€”
countryCodestringCountry for the search location. 52 countries supported (US, GB, DE, FR, and more).US
includeOrganicResultsbooleanReturn organic search results alongside the AI Overview.true

Provide either query or url, not both. For multiple queries, schedule separate runs or use the Apify API.


Output β€” Structured JSON

Always returned:

  • query β€” the executed search query
  • hasAiOverview β€” whether Google returned an AI Overview
  • searchUrl β€” the full Google Search URL used

AI Overview (when available):

  • aiOverview.summary β€” full AI-generated summary text
  • aiOverview.sources β€” cited sources with title, snippet, domain, and URL

Organic results (per result):

  • position β€” ranking position on the page
  • title β€” result title
  • url β€” result URL
  • snippet β€” text snippet

Output example

{
"query":"is coffee good or bad for you",
"hasAiOverview":true,
"aiOverview":{
"summary":"Coffee is generally good for most people when consumed in moderation (about 3–4 cups a day). It is rich in antioxidants, boosts focus, and is linked to a lower risk of type 2 diabetes...",
"sources":[
{
"title":"9 Reasons Why Coffee Is Good for You",
"domain":"Johns Hopkins Medicine",
"url":"https://www.hopkinsmedicine.org/health/..."
}
]
},
"organicResults":[
{
"position":1,
"title":"9 Reasons Why Coffee Is Good for You | Johns Hopkins",
"url":"https://www.hopkinsmedicine.org/...",
"snippet":"Coffee contains caffeine, antioxidants, and other substances..."
}
],
"searchUrl":"https://www.google.com/search?q=is+coffee+good+or+bad+for+you&hl=en&gl=us"
}

When no AI Overview is available, hasAiOverview is false and aiOverview is null.


Pricing β€” Pay Per Event (PPE)

EventDescriptionPrice
Actor startCharged once per run$0.09
QueryCharged per search queryfrom $0.012

Volume discounts available for Bronze, Silver, and Gold Apify plans.

Cost example β€” single query

No discountBronzeSilverGold
1Γ— Actor start$0.09$0.09$0.09$0.09
1Γ— Query$0.015$0.014$0.013$0.012
Total$0.105$0.104$0.103$0.102

Free tier: 3 runs for non-paying users to try the Actor.


Who Is This For?

  • SEO professionals β€” track how Google's AI Overview answers queries in your niche, monitor which sources get cited

  • Content marketers β€” find gaps between AI Overview answers and your content

  • Researchers β€” collect structured AI-generated summaries across topics at scale

  • Competitive intelligence β€” monitor how competitors appear in AI Overview citations


API Integration

Python

from apify_client import ApifyClient
client = ApifyClient("your_token")
run = client.actor("clearpath/google-ai-overview").call(run_input={
"query":"is coffee good or bad for you",
"countryCode":"US",
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
if item["hasAiOverview"]:
print(item["aiOverview"]["summary"][:200])
for result in item.get("organicResults",[]):
print(f"{result['position']}. {result['title']}")

JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'your_token'});
const run =await client.actor('clearpath/google-ai-overview').call({
query:'is coffee good or bad for you',
countryCode:'US',
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
for(const item of items){
if(item.hasAiOverview){
console.log(item.aiOverview.summary.slice(0,200));
}
}

Use with AI Assistants (Claude, GPT, etc.)

Connect this Actor to AI assistants via Apify's MCP server.

Ask your assistant to search Google and extract AI Overviews in natural language.

Setup

  1. Go to mcp.apify.com and add clearpath/google-ai-overview to your MCP server
  2. Connect the MCP server to your AI assistant (Claude Desktop, Cursor, Windsurf, etc.)

Claude Desktop example

Add Apify's MCP server to claude_desktop_config.json:

{
"mcpServers":{
"apify":{
"command":"npx",
"args":["-y","@apify/actors-mcp-server"],
"env":{
"APIFY_TOKEN":"your-apify-token"
}
}
}
}

Then ask Claude:

"Search Google for 'is intermittent fasting safe' and extract the AI Overview"

"Compare Google's AI Overview answers for 'best programming language' across US, UK, and Germany"


Export

  • JSON β€” Programmatic analysis and pipeline integration
  • CSV β€” Spreadsheet reporting
  • Excel β€” Data visualization and dashboards

Export directly from the Apify Console or via API.

Automation

  • Scheduled runs β€” Daily, weekly, or custom cron schedules
  • Webhooks β€” Trigger workflows when scraping completes
  • API β€” Integrate into existing data pipelines

FAQ

Q: Does every Google search have an AI Overview? A: No. Google generates AI Overviews for many queries, but not all. When no AI Overview is available, the Actor returns hasAiOverview: false with organic results.

Q: What countries are supported? A: 52 countries including US, UK, Germany, France, Canada, Australia, Japan, Brazil, India, and many more.

Q: Can I use my own Google Search URLs? A: Yes. Use the url field to paste a full Google Search URL with custom parameters like language (hl), location (gl), or filters.

Q: How fast is it? A: Each query takes about 15-25 seconds.

Q: Is a Google account required? A: No. The Actor searches Google without any login.

Q: How do I export the data? A: Results are available as JSON, CSV, or Excel from the Actor's dataset. Use the Apify API for programmatic access.


Support

Legal Compliance

This Actor extracts publicly available data from Google Search results. Users are responsible for complying with Google's Terms of Service and applicable data protection regulations (GDPR, CCPA).


Structured Google AI Overview data for SEO, research, and competitive intelligence.

You might also like

Google AI Overview API

johnvc/Google-AI-Overview-API

Fetch Google AI Overviews for any query - get the AI-generated answer and its cited sources as structured JSON. Send one or many queries, target a country and language, and handle Google's deferred (page-token) generation automatically. Pay per retrieval. MCP-ready for Claude and AI agents.

Google AI Mode Scraper

lexis-solutions/google-ai-scraper

Scrape AI-generated answers from Google’s AI Overviewβ€”extract organized paragraphs, lists, headings, highlighted key terms, and source citations with URLs, titles, and snippets. Perfect for research, content creation, SEO analysis, and training data. Fast, reliable, customizable.

πŸ‘ User avatar

Lexis Solutions

97

Google AI Mode SERP Analyzer

opspilot.cc/google-ai-mode-serp

Analyze Google AI Mode search results and AI overviews. Extract AI-generated answers, references, sources, and more:AI Overview、 References、Links 、Images、Shopping Results、Spell Correction - Detect if keyword was corrected

Google AI Overview Tracker

mark_ramos/google-ai-overview-tracker

Track Google AI Overviews (AIO) at scale. Returns the clean generative answer text and the deduped list of domains Google cited β€” built for GEO (Generative Engine Optimization), SEO, and brand monitoring teams. The first AIO-native Actor on Apify Store.

Google AI Overview Scraper

codingfrontend/google-ai-overview-scraper

A robust, high-performance utility designed for developer automation, data integration, and AI training. Features built-in captcha bypass, headful/headless browser execution, and proxy support to scrape Google data seamlessly, reliably, and at scale.

πŸ‘ User avatar

codingfrontend

30

Google Search Result Scrapper

getdataforu/google-search-result-scrapper-cheaper

Scrape Google Search Engine Results Pages (SERPs). Select the country or language and extract organic and paid results, AI Mode, AI overviews, ads, queries, People Also Ask, prices, reviews, like a Google SERP API. Export data, run the scraper via API, schedule runs, or integrate with other tools.

29

5.0

Google Local API | Local Pack & Business Search SERPs

johnvc/google-local-api

Search Google Local results - the local pack inside Google Search SERPs. Extract businesses with rating, reviews, phone, hours, place_id, GPS coordinates. Country, language, and device targeting. Pay per page. MCP-ready for AI agents.

Google Search Results Scraper

datascoutapi/google-search-results-scraper

πŸš€ Google Search Engine Scraper API – Extract real-time Google search results easily. Get organic results, paid ads, People Also Ask, Related Queries, reviews, and prices. Supports 25+ languages & 21+ countries. Export structured results in JSON, Excel, or CSV for SEO & market research.

Google AI Overview Scraper

scrapeai/google-ai-overview-scraper

Collect AI-generated answers from Google Search along with cited sources, referenced websites, and follow-up queries to analyze AI search visibility and content opportunities.

Yandex AI Overview Scraper

codingfrontend/yandex-ai-overview-scraper

Scrapes AI-generated overview responses (Alice AI / smart answers) from Yandex Search results. Extracts the AI answer text, cited sources, and whether an AI block was present.

πŸ‘ User avatar

codingfrontend

2

Related articles

How to scrape Google AI Mode, Perplexity, and ChatGPT
Read more