npx skills add ...
npx skills add google/skills --skill google-analytics-data-api-basics
Manages Google Analytics reporting data, enables the Analytics Data API via the Cloud CLI, and creates reports using the Google Analytics Data API (v1beta). Use when you need to interact with Google Analytics properties, run customized analytics reports, query metrics (like activeUsers, screenPageViews) and dimensions (like city, date), check metrics and dimensions compatibility, or verify API enablement. Don't use for Google Analytics Admin API operations (e.g., creating properties, managing users) or for front-end tracking installation.
npx skills add google/skills --skill google-analytics-data-api-basics
The Google Analytics Data API v1beta provides programmatic access to Google Analytics report data. It allows you to build customized dashboards, automate reporting workflows, and integrate Google Analytics data into your enterprise applications.
Before making API calls, ensure the Google Analytics Data API is enabled in your Google Cloud project.
If gcloud is not found, prompt the user to install the Google Cloud CLI before
running these commands.
Enable the API: Use the Cloud CLI (gcloud) to enable
analyticsdata.googleapis.com.
Why: Enabling the API ensures your Cloud project has the necessary quota and permissions allocated for running Google Analytics reports.
Verify API Enablement:
To authenticate your API requests, you must generate Application Default Credentials (ADC) and give your account the necessary scopes. Run the following command in your terminal:
Why: This configures ADC in your local environment with the required Cloud Platform and Google Analytics read-only scopes, allowing the client library to automatically authenticate your requests.
To create a report, use the official Google Analytics Data client library.
Always prefer the v1beta version of the API for stability and access to
current Google Analytics reporting capabilities.
[!IMPORTANT] Mandatory Agent Directive: When the user selects or requires a specific programming language, read the corresponding client library setup reference guide in
references/listed below.
If you need to install or set up the Google Analytics Data API client library for Python, read the setup guide:
google-analytics-data)If you need to install or set up the Google Analytics Data API client library for Java, read the setup guide:
com.google.cloud:google-cloud-analytics-data)If you need to install or set up the Google Analytics Data API client library for PHP, read the setup guide:
google/analytics-data)If you need to install or set up the Google Analytics Data API client library for Node.js, read the setup guide:
@google-analytics/data)If you need to install or set up the Google Analytics Data API client library for Go, read the setup guide:
cloud.google.com/go/analytics/data/apiv1beta)If you need to install or set up the Google Analytics Data API client library for .NET / C#, read the setup guide:
Google.Analytics.Data.V1Beta)If you need to install or set up the Google Analytics Data API client library for Ruby, read the setup guide:
google-analytics-data-v1beta)[!NOTE] Additional Resources: For further examples of calling the Data API with Java, PHP, Node.js, .NET, Python and REST, as well as hints on authentication with a service account, refer to the official Data API Quickstart.
Install the Client Library:
If pip is not available, prompt the user to install pip before
installing the client library.
Run a Report Request: Below is a complete example demonstrating how to
query a Google Analytics property for active users and sessions grouped by city and date.
Replace YOUR-PROPERTY-ID with your actual Google Analytics property ID (e.g.,
1234567).
Why: Using BetaAnalyticsDataClient and RunReportRequest ensures
compatibility with the v1beta endpoint and strongly typed request
validation.
When constructing your RunReportRequest, you must use valid API names for
dimensions and metrics. Refer to the official
Data API Schema documentation
for the complete, authoritative list of available fields.
Dimensions represent categorical attributes of your data.
city: The town or city of the user.country: The country of the user.date: The date of the event, formatted as YYYYMMDD.deviceCategory: The category of mobile device (e.g., desktop, mobile,
tablet).eventName: The name of the triggered event.pageTitle: The title of the web page.Metrics represent quantitative measurements.
activeUsers: The number of active users.eventCount: The total count of events.sessions: The total number of sessions.screenPageViews: The number of app screens or web pages viewed.totalRevenue: The total revenue from purchases, subscriptions, and
advertising.Some dimensions and metrics cannot be queried together in the same report
request. If you encounter an INVALID_ARGUMENT error regarding incompatible
fields, verify your field combinations For programmatic access to the Data API
schema, use getMetadata(). To programmatically check the compatibility of
specific dimension and metric combinations before running a report, use the
checkCompatibility() method.