Google Maps Review Scraper avatar

Google Maps Review Scraper

Pricing

from $8.00 / 1,000 results

Go to Apify Store
Google Maps Review Scraper

Google Maps Review Scraper

Scrape Google Maps ratings, review snippets, coordinates, and branch reputation signals from public place pages without Places API keys.

Pricing

from $8.00 / 1,000 results

Rating

0.0

(0)

Developer

太郎 山田

太郎 山田

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

7 days ago

Last modified

Share

Google Maps Review Intelligence API | Ratings, Snippets & Place Data

Track branch reputation signals by extracting aggregate ratings and public snippets from Google Maps pages. This targeted scraper parses the initial HTML of Google Maps URLs and returns the local business fields that are visible without authentication. Franchise managers, travel agencies, and local business research teams can use it to monitor location watchlists and spot public sentiment changes for follow-up review.

Schedule a daily or weekly run to track competitor ratings and branch performance across different geographic regions. Instead of manually checking profiles, you can extract the review snippets and overall scores that are visible to logged-out users on Google Search and Maps. The scraper focuses on fields commonly embedded within the page, including og:title, og:description, raw URL coordinates, and JSON-LD schema, and returns warnings when fields are missing or partial.

Private Testing Quickstart

  • Start with 1–3 full Google Maps place URLs and keep reviewLimit around 25.
  • Use dataset delivery first so you can inspect warnings, dataSources, and review availability.
  • Treat review snippets as best-effort: Google often withholds full review text in initial HTML.
  • After the first useful run, move to the recurring multi-location template, then use the webhook handoff template for action-needed review alerts.

Data Strategy

This actor fetches Google Maps place pages via HTTP and extracts structured data from multiple tiers:

  1. Meta tags (high reliability): og:title, og:description, og:image
  2. JSON-LD structured data (high reliability): Embedded LocalBusiness schema
  3. Embedded script blocks (medium reliability): AF_initDataCallback data arrays
  4. URL components (high reliability): Coordinates, place name from URL path
  5. Inline text patterns (medium reliability): Rating/review patterns in page text

Limitations

  • Individual reviews: Full review text is typically not available without JavaScript rendering or the Google Places API. The actor returns any review snippets embedded in the initial HTML (often from JSON-LD) and explicitly warns when full reviews are unavailable.
  • Rate limiting: Requests are throttled (2s minimum between requests) to be polite. Heavy use may trigger Google's bot detection.
  • Page structure changes: Google may change their HTML structure at any time. The multi-tier extraction approach provides resilience — if one source breaks, others continue working.

Use Cases

WhoWhy
Local SEO teamsBenchmark ratings, review counts, and category fit across locations
Franchise operatorsCompare multiple stores or branches with one normalized schema
AgenciesBuild lightweight review-monitoring datasets without Google Places API keys
Competitive analystsPair Maps reputation signals with Trustpilot or app-review data

Input

FieldTypeDefaultDescription
placeUrlsstring[](required)Google Maps place URLs or share links
reviewLimitinteger200Max review snippets per place
deliverystring"dataset""dataset" or "webhook"
webhookUrlstringWebhook URL for delivery
dryRunbooleanfalseExtract without saving results

Supported URL formats

  • https://www.google.com/maps/place/Place+Name/
  • https://www.google.com/maps/place/Place+Name/@lat,lng,zoom
  • https://maps.google.com/maps?q=...
  • https://goo.gl/maps/... (short links — auto-resolved)
  • https://maps.app.goo.gl/... (app share links — auto-resolved)

Input Examples

Example: Single business reviews

{
"businessName": "Stripe Inc, San Francisco",
"maxReviews": 50
}

Example: Multi-locality competitive scan

{
"businessName": "Anthropic",
"localities": [
"San Francisco",
"New York"
],
"maxReviewsPerLocation": 30
}

Example: Recent reviews only

{
"businessName": "Example Cafe",
"sinceDays": 30,
"sortBy": "newest"
}

Output

Each place returns:

  • Normalized place metadata: name, address, coordinates, category, phone, website, etc.
  • Review intelligence: aggregate rating, review count, review snippets (when available)
  • Data provenance: which extraction tiers provided data
  • Explicit warnings: what data couldn't be extracted and why

Local run

npm start # Run with input.json
npm test # Run test suite

Example output

{
"meta": {
"implementationStatus": "live",
"dataStrategy": "public_html",
"totalSources": 1,
"succeeded": 1,
"failed": 0
},
"places": [{
"status": "ok",
"dataSources": ["meta_tags", "json_ld", "url_components"],
"place": {
"name": "Tokyo Station",
"address": "1 Chome Marunouchi, Chiyoda City, Tokyo",
"rating": null,
"coordinates": { "lat": 35.6812, "lng": 139.7671 }
},
"reviewIntelligence": {
"rating": 4.3,
"reviewCount": 12456,
"snippetCount": 1,
"fullReviewsAvailable": false
}
}]
}

Pair this actor with other flagship intelligence APIs in the same portfolio:

Pricing & Cost Control

Apify Store pricing is usage-based, so total cost mainly follows how many placeUrls you process. Check the Store pricing card for the current per-event rates.

  • Start with a few placeUrls while validating the schema.
  • Keep reviewLimit low because Google often exposes only snippets anyway.
  • Use dataset delivery first so blocked or partial cases are easy to inspect.
  • Use dryRun: true before larger location batches or webhook handoffs.

⭐ Was this helpful?

If this actor saved you time, please leave a ★ rating on Apify Store. It takes 10 seconds, helps other developers discover it, and keeps updates free.

Bug report or feature request? Open an issue on the Issues tab of this actor.