Endpoint Playground
Test Crawlora's Google Maps place reviews API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/google/map/place/<place_id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| place_id (path) | string | Yes | Google Place ID | |
| limit | integer | No | Maximum number of reviews to return. Omit or 0 for all captured. |
{
"code": 200,
"msg": "ok",
"data": [
{
"id": "Ci9DQUlRQUNvZENodHljRjlvT201dFRHSk1aRU54T0U5cmRFVjNlbGRmU1RJNFkzYxAB",
"rating": 5,
"text": "I never knew pork could taste this good. We tried the special loin and it was worth the queue.",
"relative_time": "6 months ago",
"published_at": "2026-01-01T14:39:25Z",
"author_name": "Supisara Darnchaloemwong",
"author_id": "112997636113922766481",
"author_url": "https://www.google.com/maps/contrib/112997636113922766481",
"author_photo": "https://lh3.googleusercontent.com/a-/ALV-UjWc6XFX9IKHJiQ4vZoY7o_EVCYkjMbWjGfdPZrLEw",
"author_review_count": 23,
"source": "Google",
"photos": [
{
"url": "https://lh3.googleusercontent.com/grass-cs/ACvplmM2ICW60UtuEQbkJLN-ot5vq3pCknhfn=w1207-h1262-k-no",
"width": 1207,
"height": 1262
}
]
}
]
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the reviews Google shows on a specified place_id's Google Maps page — typically the 8 most relevant, each with its rating, text, reviewer, timestamp, and any photos the reviewer attached. Photo-only reviews return an empty `text`. This is the place page's first page of reviews, not the full review archive. Rate limit is enforced at 1 request per second.
{
"code": 200,
"msg": "ok",
"data": [
{
"id": "Ci9DQUlRQUNvZENodHljRjlvT201dFRHSk1aRU54T0U5cmRFVjNlbGRmU1RJNFkzYxAB",
"rating": 5,
"text": "I never knew pork could taste this good. We tried the special loin and it was worth the queue.",
"relative_time": "6 months ago",
"published_at": "2026-01-01T14:39:25Z",
"author_name": "Supisara Darnchaloemwong",
"author_id": "112997636113922766481",
"author_url": "https://www.google.com/maps/contrib/112997636113922766481",
"author_photo": "https://lh3.googleusercontent.com/a-/ALV-UjWc6XFX9IKHJiQ4vZoY7o_EVCYkjMbWjGfdPZrLEw",
"author_review_count": 23,
"source": "Google",
"photos": [
{
"url": "https://lh3.googleusercontent.com/grass-cs/ACvplmM2ICW60UtuEQbkJLN-ot5vq3pCknhfn=w1207-h1262-k-no",
"width": 1207,
"height": 1262
}
]
}
]
}curl "https://api.crawlora.net/api/v1/google/map/place/<place_id>/reviews" \
-H "x-api-key: $CRAWLORA_API_KEY"