Google Business Performance API has a NEW API method that allows fetching multiple `DailyMetrics` in a single API request.
Review the deprecation schedule and instructions to migrate over from v4 reportInsights API method to Google Business Profile Performance API.

Method: accounts.locations.localPosts.reportInsights

Stay organized with collections Save and categorize content based on your preferences.

Returns insights for a set of local posts associated with a single listing. Which metrics and how they are reported are options specified in the request proto.

HTTP request

POST https://mybusiness.googleapis.com/v4/{name=accounts/*/locations/*}/localPosts:reportInsights

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
name

string

Required. The name of the location for which to fetch insights.

Request body

The request body contains data with the following structure:

JSON representation
{
  "localPostNames": [
    string
  ],
  "basicRequest": {
    object (BasicMetricsRequest)
  }
}
Fields
localPostNames[]

string

Required. The list of posts for which to fetch insights data. All posts have to belong to the location whose name is specified in the name field.

basicRequest

object (BasicMetricsRequest)

A request to include basic metric insights in the report. This request applies to all posts requested.

Response body

If successful, the response body contains data with the following structure:

Response message for Insights.ReportLocalPostInsights

JSON representation
{
  "name": string,
  "localPostMetrics": [
    {
      object (LocalPostMetrics)
    }
  ],
  "timeZone": string
}
Fields
name

string

localPostMetrics[]

object (LocalPostMetrics)

One entry per requested post corresponding to this location.

timeZone

string

Time zone (IANA timezone IDs, eg, 'Europe/London') of the location.

Authorization Scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/plus.business.manage
  • https://www.googleapis.com/auth/business.manage

For more information, see the OAuth 2.0 Overview.

LocalPostMetrics

All the metrics requested for a Local Post.

JSON representation
{
  "localPostName": string,
  "metricValues": [
    {
      object (MetricValue)
    }
  ]
}
Fields
localPostName

string

metricValues[]

object (MetricValue)

A list of values for the requested metrics.