Google About This Result Scraper avatar

Google About This Result Scraper

Pricing

from $1.99 / 1,000 google about this result scraper results

Go to Apify Store
Google About This Result Scraper

Google About This Result Scraper

Scrapes source-backed metadata and search relationship factors from Google About This Result pages.

Pricing

from $1.99 / 1,000 google about this result scraper results

Rating

0.0

(0)

Developer

Search API

Search API

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

Scrapes source-backed metadata and search relationship factors from Google About This Result pages.

What this Actor collects

The Actor converts Google's About This Result disclosures into one clean JSON record per inspected search result, including result identity, source and entity details, relationship factors, panel metadata, locale, and retrieval provenance when available.

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

Use cases

  • Entity research
  • Search-result verification
  • Knowledge-graph 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"OpenAI"Search term to look up on Google
maxItemsintegerNo10Maximum number of results to extract About This Result info for
glstringNo"us"Country code for localized results (e.g., us, uk, in)
hlstringNo"en"Language code (e.g., en, es, fr)
proxyConfigurationobjectNo{"useApifyProxy":true,"apifyProxyGroups":["GOOGLE_SERP"]}Proxy used to load Google result pages. GOOGLE_SERP is recommended.
panelProxyConfigurationobjectNo{"useApifyProxy":true,"apifyProxyGroups":["RESIDENTIAL"]}Proxy used to fetch Google's embedded About This Result pages. Residential sessions are recommended.

Example input

{
"query": "ai",
"maxItems": 20,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"GOOGLE_SERP"
]
},
"gl": "us",
"hl": "en",
"panelProxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
}

Output

The default dataset contains one item per inspected Google result. The following are the most useful fields; entity, source, ownership, and relationship details appear only when Google includes them in the disclosure.

FieldTypeDescription
positionintegerSERP Position
titlestringResult Title
urlstringResult URL
sourceNamestringSource Name
sourceTypestringSource Type
sourceDescriptionstringSource Description
resultLanguagestringResult Language
relevantRegionsarrayRelevant Regions
isAdbooleanAdvertisement
pageintegerSearch Page
searchQuerystringSearch Query
scrapedAtstringScraped At
typestringRecord Type
snippetstringSearch Snippet
linkstringResult Link
querystringQuery

Example dataset item

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

{
"position": 1,
"title": "Google AI - How we're making AI helpful for everyone",
"url": "https://ai.google/",
"sourceName": "Google AI",
"sourceType": "Artificial intelligence company",
"resultLanguage": "English",
"relevantRegions": [
"United States"
],
"isAd": false,
"page": 1,
"searchQuery": "ai",
"scrapedAt": "2026-07-23T19:02:37.498Z",
"type": "google_about_this_result"
}