Google Reviews

The Google Maps Reviews API allows you to fetch customer reviews for a specific business or place. Get detailed review information including ratings, text, photos, and reviewer details.

Endpoint

GET /api/google_reviews

Parameters

business_id string Required

The unique Google Business ID (format: 0x...:0x...).

search string Optional

Filter reviews by search term.

sort string Optional

Sort order for reviews (1=most relevant, 2=newest, 3=highest, 4=lowest).

limit string Optional

Maximum number of reviews to return.

page string Optional

Page token for pagination.

Response Schema

[
    {
        "title": "JSON Results",
        "description": null,
        "json_sample": {
            "items": [
                {
                    "text": "Great place!",
                    "rating": 5,
                    "review_id": "ChZDSUhNMG9nS0VJQ0FnSUM1bnYzQzJ3EAE",
                    "author_name": "John Doe",
                    "relative_time": "2 weeks ago"
                }
            ],
            "nextPage": "token123"
        }
    }
]

Try It Live

Test this endpoint in our interactive playground with real data.

Open in Playground