Retrieving digital assets...
Scrape AI Overview (AI-generated answer) boxes from Google Search results
99%
30s
500+
gl) and language (hl) parameters for region-specific results| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
queries | Array | Yes | ["What is quantum computing"] | List of search queries to scrape AI Overviews for |
maxItems | Integer | No | 10 | Maximum number of results to return (1–1000) |
gl | String | No | "us" | Google country parameter (e.g., us, uk, in) |
hl | String | No | "en" | Google language parameter (e.g., en, es, fr) |
proxyConfiguration | Object | No | Apify Residential | Proxy settings for the scraper |
{
"queries": [
"What is machine learning?",
"How does blockchain work?",
"What is climate change?"
],
"maxItems": 10,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}
The scraper outputs structured JSON data for each query that triggered an AI Overview on Google Search.
| Field | Type | Description |
|---|---|---|
query | String | The search query submitted |
aiOverviewText | String | Full text of the AI Overview answer |
sources | Array | Cited source pages with title and URL |
relatedQuestions | Array | Related questions shown alongside the AI Overview |
{
"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?"
]
}
Explore more automation tools and scrapers to supercharge your data acquisition workflow.