Google People Also Ask Scraper avatar

Google People Also Ask Scraper

Pricing

Pay per usage

Go to Apify Store
Google People Also Ask Scraper

Google People Also Ask Scraper

Extracts current Google People Also Ask questions with native expanded answers or clearly labeled source-backed Google answer snippets, citations, and retrieval provenance.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Extracts current Google People Also Ask questions with native expanded answers or clearly labeled source-backed Google answer snippets, citations, and retrieval provenance.

What this Actor collects

The Actor converts Google People Also Ask results into one clean JSON record per question, preserving native expanded answers or clearly labeled source-backed answer snippets, citations, nesting context, locale, and retrieval provenance.

  • Uses the input limits and filters below to control the crawl.
  • Stores source-backed fields defined by the 21-field dataset schema.
  • Omits optional fields when the source does not expose a value instead of writing nulls or fabricated placeholders.

Use cases

  • Audience-question and topic research
  • Answer and citation monitoring
  • FAQ and content-gap enrichment

Input

Provide input in JSON. Fields marked required must be supplied. The Default / example column shows a schema default when one exists; otherwise it shows a documented prefill or fixture value.

FieldTypeRequiredDefault / exampleDescription
querystringYes"how does climate change work"The search query that triggers PAA panels (e.g. 'how does climate change work')
maxItemsintegerNo20Maximum number of PAA question-answer pairs to extract
expandNestedbooleanNotrueRecursively click nested PAA questions to expand deeper
glstringNo"us"Two-letter country code (e.g. 'us', 'uk', 'in')
hlstringNo"en"Two-letter language code (e.g. 'en', 'es', 'de')
proxyConfigurationobjectNo{"useApifyProxy":true,"apifyProxyGroups":["GOOGLE_SERP"]}Proxy settings for the scraper.

Example input

{
"query": "how to cook rice",
"maxItems": 3,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"GOOGLE_SERP"
],
"countryCode": "US"
},
"expandNested": true,
"gl": "us",
"hl": "en"
}

Output

The default dataset contains one item per People Also Ask question. The following are the most useful fields; answer text, citation, source type, and nesting fields depend on what Google exposes or can expand.

FieldTypeDescription
positionintegerPosition
questionstringQuestion
answerstringAnswer
sourceUrlstringSource URL
sourceNamestringSource Name
answerSourceTypestringAnswer Source Type
depthintegerDepth Level
searchQuerystringSearch Query
scrapedAtstringScraped At
typestringType
answerHtmlstringAnswer HTML
sourceTitlestringSource Title
sourceDomainstringSource Domain
paaQuestionIdstringPAA Question ID
originalPaaSearchUrlstringOriginal PAA Search URL
answerSearchUrlstringAnswer Retrieval Search URL

Example dataset item

This compact example is taken from local Actor storage. Long text and nested collections are shortened for documentation only.

{
"position": 1,
"question": "What is the correct way of cooking rice?",
"answer": "Oct 7, 2019 — Stovetop yields the best result for perfect, evenly cooked fluffy rice. This is my default, favourite method. Oven is best for large batch as it ...",
"sourceUrl": "https://www.recipetineats.com/how-to-cook-rice/",
"sourceName": "RecipeTin Eats",
"answerSourceType": "google-organic-snippet",
"depth": 0,
"searchQuery": "how to cook rice",
"scrapedAt": "2026-07-25T21:49:53.322Z",
"type": "people-also-ask",
"answerHtml": "<span><span>Oct 7, 2019</span> — </span><span><em>Stovetop yields the best result for perfect, evenly cooked fluffy rice</em>. This is my default, favourite method. Oven is best f…",
"sourceTitle": "How to cook white rice - easily and perfectly"
}