Google Search Scraper avatar

Google Search Scraper

Pricing

$4.99/month + usage

Go to Apify Store
Google Search Scraper

Google Search Scraper

Scrape Google web search results (organic results, snippets, People Also Ask) from localized Google domains

Pricing

$4.99/month + usage

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

11

Total users

1

Monthly active users

4 days ago

Last modified

Share

Features

  • Organic Results: Extracts full organic search results including title, URL, domain, and snippet
  • SERP Features: Captures rich result types including Featured Snippets, Knowledge Panels, Top Stories, Videos, Image Packs, and People Also Ask
  • Search Metadata: Records total result count, number of organic results, and presence of SERP features per query
  • Rich Result Data: Extracts structured data such as star ratings, prices, dates, and thumbnails from rich results
  • Multi-Page Scraping: Automatically paginates through multiple result pages
  • Localization: Full support for country-specific Google domains and language preferences
  • High Volume: Supports up to 50,000 results per query
  • Proxy Support: Built-in Apify Proxy with Google SERP proxy for reliable access

Input Parameters

ParameterTypeRequiredDefaultDescription
queryStringYes"Elon Musk"The search term to use
maxItemsIntegerNo10Maximum number of search results to retrieve (10–50000)
glStringNo"us"Google country code for localized results
hlStringNo"en"UI language code for the results
lrStringNoLanguage filter for results (e.g., lang_en, lang_de)
tbsStringNoTime-based search filter (e.g., qdr:d for past day, qdr:w for past week)
proxyConfigurationObjectNoApify GOOGLE_SERPProxy settings for the scraper

Input Schema Example

{
"query": "best electric cars 2025",
"maxItems": 50,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["GOOGLE_SERP"]
}
}

Output Schema

The scraper outputs three types of structured data: organic results, SERP features, and search metadata.

Organic Result Fields

FieldTypeDescription
positionIntegerPosition in the search results
titleStringPage title
linkStringFull URL of the result
domainStringDomain name
siteNameStringSite display name
displayedUrlStringBreadcrumb-style URL shown in results
snippetStringDescription snippet
dateStringPublication date (when available)
ratingStringStar rating (for rich results)
ratingCountStringNumber of reviews
priceStringPrice info (for product results)
thumbnailStringThumbnail image URL
richResultTypeStringType of rich result (e.g., Recipe, Product)
typeStringResult type (organic, featured_snippet, etc.)
searchQueryStringQuery used to retrieve this result
searchPageIntegerPage number of the result

Organic Result Example

{
"position": 1,
"title": "Best Electric Cars of 2025 - Car and Driver",
"link": "https://www.caranddriver.com/lists/best-electric-cars",
"domain": "caranddriver.com",
"siteName": "Car and Driver",
"displayedUrl": "caranddriver.com/lists/best-electric-cars",
"snippet": "We have driven nearly every electric vehicle on the market and have ranked the best EVs by performance, range, and value...",
"date": "Jan 10, 2025",
"rating": "4.8",
"ratingCount": "1,240",
"type": "organic",
"searchQuery": "best electric cars 2025",
"searchPage": 1,
"scrapedAt": "2025-01-15T10:30:00.000Z"
}