Google Place Reviews
Fetch structured reviews for a place — rating, text, author, date, and owner responses — with sorting and pagination. Get a data_id from the Maps endpoint.
POST/api/v2/google/maps/reviews
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsondata_idstringData ID (0xHEX:0xHEX), from a Maps result. Provide this or place_id.
Example: 0x8644ca6bc309e81b:0x1f1a903bbb66839
place_idstringPlace ID (ChIJ...). Provide this or data_id.
numnumberReviews per page (1-20).
next_page_tokenstringPagination cursor from a prior response.
hlstringUI language.
Example: en
glstringGeo location country.
Example: us
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.google.maps_reviews(data_id="0x8644ca6bc309e81b:0x1f1a903bbb66839")
print(results)Response
"engine": "google_maps_reviews",
"data_id": "0x8644ca6bc309e81b:0x1f1a903bbb66839",
"hl": "en",
"num": 10,
"google_domain": "google.com"
},
"title": "Epoch Coffee",
"address": "221 W N Loop Blvd, Austin, TX 78751",
"rating": 4.5,
"reviews": 2497,
"type": "Coffee shop"
},
"title": "Epoch Coffee",
"address": "221 W N Loop Blvd, Austin, TX 78751",
"rating": 4.5,
"reviews": 2497,
"type": "Coffee shop"
},
],
],
"next_page_token": "CjEIARIpCgoAP7_LAQ8f____EhDXZI7SeU94n3X0IHsAAAAAGgn92RgCax2FFfcYACIA:10"
},
"credits_used": 1,
"credits_remaining": 49
}