This endpoint retrieves Google reviews for a business using either a keyword search, Google CID, or Place ID. It returns detailed review information including ratings, review text, reviewer profiles, and more.
{ "keyword": "string", // Optional. Business name or search term to find reviews for. "cid": "string", // Optional. Google Maps CID (Client ID) for a specific business. "placeId": "string", // Optional. Google Maps Place ID for a specific business. "reviews": "number", // Optional. Number of reviews to fetch. Default: 10. "sortBy": "string" // Optional. Sort order for reviews. Can be "relevant", "newest", "highest_rating", or "lowest_rating". Default: "relevant". "language": "string", // Optional. Language code for the reviews (e.g., "en" for English). Default: "en". This is an advanced setting, do not use unless you know what you are doing. "location": "string", // Optional. Location context for the search. Default: "London,England,United Kingdom". This is an advanced setting, do not use unless you know what you are doing.}
Note: At least one of keyword, cid, or placeId must be provided.