Utilities

GMB Reviews

Get Google Business Profile reviews

Fetches reviews for a connected Google Business Profile account.

Returns all reviews for the business location, including:

  • Reviewer information (name, profile photo)
  • Star rating (1-5)
  • Review comment/text
  • Business owner's reply (if any)
  • Review timestamps

Use pagination via nextPageToken to fetch all reviews for locations with many reviews.

GET
/v1/accounts/{accountId}/gmb-reviews
AuthorizationBearer <token>

API key authentication - use your Late API key as a Bearer token

In: header

Path Parameters

accountIdstring

The Late account ID (from /v1/accounts)

Query Parameters

pageSize?integer

Number of reviews to fetch per page (max 50)

Default50
Range1 <= value <= 50
pageToken?string

Pagination token from previous response

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://getlate.dev/api/v1/accounts/string/gmb-reviews"
{
  "success": true,
  "accountId": "64e1f0a9e2b5af0012ab34cd",
  "locationId": "9281089117903930794",
  "reviews": [
    {
      "id": "AIe9_BGx1234567890",
      "name": "accounts/123456789/locations/9281089117903930794/reviews/AIe9_BGx1234567890",
      "reviewer": {
        "displayName": "John Smith",
        "profilePhotoUrl": "https://lh3.googleusercontent.com/a/...",
        "isAnonymous": false
      },
      "rating": 5,
      "starRating": "FIVE",
      "comment": "Great service and friendly staff! Highly recommend.",
      "createTime": "2024-01-15T10:30:00Z",
      "updateTime": "2024-01-15T10:30:00Z",
      "reviewReply": {
        "comment": "Thank you for your kind words! We appreciate your support.",
        "updateTime": "2024-01-16T08:00:00Z"
      }
    },
    {
      "id": "AIe9_BGx0987654321",
      "name": "accounts/123456789/locations/9281089117903930794/reviews/AIe9_BGx0987654321",
      "reviewer": {
        "displayName": "Anonymous",
        "profilePhotoUrl": null,
        "isAnonymous": true
      },
      "rating": 4,
      "starRating": "FOUR",
      "comment": "Good experience overall.",
      "createTime": "2024-01-10T14:20:00Z",
      "updateTime": "2024-01-10T14:20:00Z",
      "reviewReply": null
    }
  ],
  "averageRating": 4.5,
  "totalReviewCount": 125,
  "nextPageToken": "CiAKHAoUMTIzNDU2Nzg5"
}
{
  "error": "This endpoint is only available for Google Business Profile accounts"
}
{
  "error": "Access token expired. Please reconnect your Google Business Profile account."
}
{
  "error": "You do not have permission to access reviews for this location."
}
{
  "error": "Not found"
}
{
  "error": "string",
  "details": {}
}