Analytics

Get Google Business Profile performance metrics

Returns daily performance metrics for a Google Business Profile location. Metrics include impressions (Maps/Search, desktop/mobile), website clicks, call clicks, direction requests, conversations, bookings, and food orders. Data may be delayed 2-3 days. Max 18 months of historical data. Requires the Analytics add-on.

get/v1/analytics/googlebusiness/performance

Query parameters

accountIdstring required

The Zernio SocialAccount ID for the Google Business Profile account.

metricsstring

Comma-separated metric names. Defaults to all available metrics. Valid values: BUSINESS_IMPRESSIONS_DESKTOP_MAPS, BUSINESS_IMPRESSIONS_DESKTOP_SEARCH, BUSINESS_IMPRESSIONS_MOBILE_MAPS, BUSINESS_IMPRESSIONS_MOBILE_SEARCH, BUSINESS_CONVERSATIONS, BUSINESS_DIRECTION_REQUESTS, CALL_CLICKS, WEBSITE_CLICKS, BUSINESS_BOOKINGS, BUSINESS_FOOD_ORDERS, BUSINESS_FOOD_MENU_CLICKS

fromDatestring date

Start date (YYYY-MM-DD). Defaults to 30 days ago. Max 18 months back.

toDatestring date

End date (YYYY-MM-DD). Defaults to today.

startDatestring date

Alias of fromDate, kept for existing callers

endDatestring date

Alias of toDate, kept for existing callers

Response

Performance metrics with daily time series

successboolean
accountIdstring
platformstring
metricsobject

Each key is a metric name containing total and daily values.

dataDelaystring

Example response

{
  "success": true,
  "platform": "googlebusiness",
  "dateRange": {
    "startDate": "2026-03-01",
    "endDate": "2026-03-31"
  },
  "dataDelay": "Data may be delayed 2-3 days"
}

Changes