Endpoints
Get Google Reviews
Description
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.
Endpoint
Headers
- Content-Type:
application/json
- Authorization: Bearer
<API_KEY>
(required)
Request Body
Note: At least one of keyword
, cid
, or placeId
must be provided.
Responses
Success (200)
Returns the reviews and business information.
- Content-Type: application/json
- X-RateLimit-Limit: The rate limit for the user.
- X-RateLimit-Remaining: The remaining number of requests for the user.
Bad Request (400)
Returned if the request is invalid.
Unauthorized (401)
Returned if the API key is invalid or missing.
Internal Server Error (500)
Returned if there’s an error during the review fetching process.
Example Request
Notes
- Credit usage is calculated based on the number of reviews:
- 5 credits per 10 reviews (rounded up)
- e.g., 11 reviews would cost 10 credits
- The maximum number of reviews that can be fetched in a single request is 4490
- If using a Place ID, it should be in the format returned by Google Maps (e.g., “ChIJrTLr-GyuEmsRBfy61i59si0”)
- The CID is Google’s unique identifier for a business location. It can be found in the URL when viewing a business on Google Maps
Rate Limiting
Rate limit headers (X-RateLimit-Limit
and X-RateLimit-Remaining
) are included in the response to indicate the user’s current rate limit status.