Google Maps Reviews API
Scraping only the reviews from Google Maps is now possible with the Google SERP API.
To enable this engine, set the engine=google_maps_reviews
parameter.
If you only want to scrape the Google Maps Reviews, you can do so by simply interacting with the Google Maps Reviews API. This engine will return a JSON object of all the reviews available, based on your query.

Google Maps Reviews API Integration Examples
We will use following URL as an example for this request:
https://serpapi.webscrapingapi.com/v2?engine=google_maps_reviews&api_key=<YOUR_API_KEY>&fid=0x4786c6ace45fe3bd:0x126d84580eedebe5
Ready to Use Google Maps Reviews Scraping Scripts:
curl --request GET --url "https://serpapi.webscrapingapi.com/v2?engine=google_maps_reviews&api_key=YOUR_API_KEY&fid=0x4786c6ace45fe3bd:0x126d84580eedebe5"
Google Maps Reviews Parameters
#1: Query Parameter
fid
Required
string
Feature id what you want to fetch reviews to. fid
parameter can be found in knowledge.fid
field of google search response.
#2: Request Customisation Parameters
sort
string
The way reviews are sorted.
Possible values are:
sort=qualityScore
(default) - most relevant first
sort=newestFirst
- newest first
sort=ratingHigh
- highest rating first
sort=ratingLow
- lowest rating first
filter
string
Filter keyword. Will respond with reviews that contain specified keyword only.
#3: Geolocation Parameters
#4: Pagination Parameters
start
int
The offset of the Google Maps results. Represents the number of results that you want to skip.
num
int
The number of results returned on each page.
Last updated