The Google Maps Reviews Scraper extracts user reviews from public Google Maps business pages. For each listing, it collects review text, rating, reviewer’s name, review date, and number of likes.

This scraper job is asynchronous. You’ll receive a jobId, and can fetch results via polling or webhook delivery.

Example Request

curl --request POST \
  --url 'https://api.hasdata.com/scrapers/google-maps-reviews/jobs' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <your-api-key>' \
  --data '{
    "urls": [
      "https://www.google.com/maps/place/Grand+Canyon/@36.099796,-112.1299942,14z/data=!3m1!4b1!4m5!3m4!1s0x80cc0654bd27e08d:0xb1c2554442d42e8d!8m2!3d36.0997631!4d-112.1124846"
    ],
    "sortBy": "newestFirst"
  }'

Job Parameters

urls
string[]
required

List of full Google Maps place URLs. Each URL should point directly to a business or location page.

sortBy
string
required

Sort order for reviews. One of:

  • qualityScore — Relevance (default Google sort)
  • newestFirst — Most recent reviews first
  • ratingHigh — Highest-rated reviews first
  • ratingLow — Lowest-rated reviews first

Getting Results

Webhooks

Receive real-time updates when your scraper job starts, completes, or collects data.

Results API

Use the Results API to fetch your data using the jobId, with support for polling and pagination.

Stopping a Job

Cancel an active scraper job early if it’s no longer needed or you want to save credits.