Google AI Overview Scraper avatar

Google AI Overview Scraper

Pricing

from $8.00 / 1,000 results

Go to Apify Store
Google AI Overview Scraper

Google AI Overview Scraper

Scrape AI Overview (AI-generated answer) boxes from Google Search results

Pricing

from $8.00 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Features

  • AI Overview Extraction: Scrapes the AI-generated answer boxes that appear at the top of Google Search results
  • Source Citations: Captures all source links and page titles cited within the AI overview
  • Related Questions: Extracts follow-up and related questions associated with each AI overview
  • Batch Query Processing: Accepts a list of queries to process multiple searches in one run
  • Localization Support: Configurable country (gl) and language (hl) parameters for region-specific results
  • Proxy Support: Built-in Apify Proxy support with residential proxies for reliable access

Input Parameters

ParameterTypeRequiredDefaultDescription
queriesArrayYes["What is quantum computing"]List of search queries to scrape AI Overviews for
maxItemsIntegerNo10Maximum number of results to return (1–1000)
glStringNo"us"Google country parameter (e.g., us, uk, in)
hlStringNo"en"Google language parameter (e.g., en, es, fr)
proxyConfigurationObjectNoApify ResidentialProxy settings for the scraper

Input Schema Example

{
"queries": [
"What is machine learning?",
"How does blockchain work?",
"What is climate change?"
],
"maxItems": 10,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output Schema

The scraper outputs structured JSON data for each query that triggered an AI Overview on Google Search.

Main Fields

FieldTypeDescription
queryStringThe search query submitted
aiOverviewTextStringFull text of the AI Overview answer
sourcesArrayCited source pages with title and URL
relatedQuestionsArrayRelated questions shown alongside the AI Overview

AI Overview Result Example

{
"query": "What is machine learning?",
"aiOverviewText": "Machine learning is a subset of artificial intelligence that enables systems to learn and improve from experience without being explicitly programmed. It focuses on developing computer programs that can access data and use it to learn for themselves...",
"sources": [
{ "title": "Machine Learning - Google Developers", "url": "https://developers.google.com/machine-learning/crash-course/ml-intro" },
{ "title": "What is Machine Learning? - IBM", "url": "https://www.ibm.com/topics/machine-learning" }
],
"relatedQuestions": [
"What are the types of machine learning?",
"How is machine learning used in everyday life?",
"What is the difference between AI and machine learning?"
]
}