Skip to content
Login Sign up

Google Maps Reviews API

Extract user reviews for any Google Maps place. Set engine=google_maps_reviews and pass the data_id from a Google Maps response to receive a structured list of reviews with ratings, dates, and text.

GET https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesYour SERP API key
enginestringyesMust be google_maps_reviews
data_idstringyesGoogle Maps data ID for the place
topic_idstringnoFilter reviews by a topic ID
hlstringnoInterface language code
sort_bystringnoqualityScore, newestFirst, ratingHigh, or ratingLow
next_page_tokenstringnoToken from a previous response to fetch the next page
Terminal window
curl "https://serp.shifter.io/v1?engine=google_maps_reviews&api_key=YOUR_API_KEY&data_id=0x4786c6ace45fe3bd:0x126d84580eedebe5"
{
"search_parameters": {
"engine": "google_maps_reviews",
"data_id": "0x4786c6ace45fe3bd:0x126d84580eedebe5"
},
"place_info": {
"title": "Joe's Pizza",
"rating": 4.5,
"reviews": 2431
},
"reviews": [
{
"user": {
"name": "Jane Doe",
"contributor_id": "1234567890",
"reviews": 42
},
"rating": 5,
"date": "a month ago",
"snippet": "Best slice in town. Quick service and a classic NYC vibe."
}
],
"serpapi_pagination": {
"next_page_token": "CAESBkN..."
}
}