google-analytics-admin-api-basics
Manages Google Analytics account and property settings, enables the Analytics Admin API via the Cloud CLI, lists accounts and properties, and manages data streams, custom dimensions, conversion events, and integrations
Install / Use
npx skills add google/skills --skill google-analytics-admin-api-basicsInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Data & AnalyticsSupported Platforms
Our assessment of google-analytics-admin-api-basics
google-analytics-admin-api-basics scores 93/100 on our quality scale, 34th of 205 Data & Analytics skills we index (top 17%).
Its SKILL.md is 7.6 KB long, well organised into 15 sections with 1 code example: a thorough specification that gives an agent plenty to work with.
With 20,340 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated 2 days ago, so google-analytics-admin-api-basics is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
google-analytics-admin-api-basics compared with similar skills
All 4 of these similar skills score higher than google-analytics-admin-api-basics; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| google-analytics-admin-api-basics (this skill)by google | 93 | 20.3k | 2d ago | SKILL.md |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| Scraplingby D4Vinci | 100 | 83.7k | today | MCP Server |
| LocalAIby mudler | 100 | 49.3k | today | MCP Server |
Frequently asked questions
- How do I install google-analytics-admin-api-basics?
- Run
npx skills add google/skills --skill google-analytics-admin-api-basics. The install tabs above show the steps for each supported agent. - Which AI agents does google-analytics-admin-api-basics work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is google-analytics-admin-api-basics safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is google-analytics-admin-api-basics still maintained?
- The repository was last updated 2 days ago, so google-analytics-admin-api-basics is actively maintained.
Skill content
View source on GitHubname: google-analytics-admin-api-basics metadata: version: "1.0.0" category: GoogleAnalytics description: >- Manages Google Analytics account and property settings, enables the Analytics Admin API via the Cloud CLI, lists accounts and properties, and manages data streams, custom dimensions, conversion events, and integrations. Use when you need to programmatically configure Google Analytics accounts, provision properties, manage data retention, configure Measurement Protocol secrets, or manage Firebase and Google Ads links.
Getting Started with Google Analytics Admin API
The Google Analytics Admin API provides programmatic access to Google Analytics account and property configuration. It lets you automate account management, manage data streams, configure custom dimensions, and handle product integrations.
Enabling the API via Cloud CLI
Before making API calls, ensure the Google Analytics Admin 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 enableanalyticsadmin.googleapis.com.gcloud services enable analyticsadmin.googleapis.com --quietWhy: Enabling the API ensures your Cloud project has the necessary quota and permissions allocated for managing Google Analytics configurations.
-
Verify API Enablement:
gcloud services list --enabled --filter="analyticsadmin.googleapis.com"
Authentication
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:
gcloud auth application-default login --scopes="https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/analytics.readonly"
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.
[!NOTE] Configuration Changes: Methods changing the Google Analytics account/property configuration will need the
https://www.googleapis.com/auth/analytics.editscope.
Admin API Use Cases
You can use the Google Analytics Admin API to:
- Run Data Access reports (see https://developers.google.com/analytics/devguides/config/admin/v1/access-api.md.txt for more info)
- Create Account summaries
- Manage accounts
- Provision new accounts
- Search account change history events
- Manage and create properties
- Manage property data retention settings
- Manage conversion events
- Manage custom dimensions and metrics
- Manage data streams and configure measurement protocol secrets
- Manage Firebase links
- Manage Google Ads links
- Manage key events
v1alpha-Only Use Cases
The following capabilities are currently available only in the v1alpha version
of the Admin API:
- Manage account and property access bindings
- Create and manage rollup properties
- Create and manage subproperties
- Acknowledge user data collection
- Change property attribution, data retention, Google signals, reporting identity, and User Provided Data settings
- Manage AdSense links
- Manage BigQuery links
- Manage audiences
- Manage channel groups
- Manage calculated metrics
- Manage DisplayVideo360Advertiser links
- Manage expanded data sets
- Manage reporting data annotations
- Manage SearchAds360 links
- Manage event create rules for a data stream
- Manage SKAdNetwork conversion value schema of an iOS stream
- Submit a request for user deletion for a Google Analytics property.
Calling the Admin API
To interact with the Admin API, use the official Google Analytics Admin client
library. Note that v1beta is the most stable version of the Admin API. For the
latest features, consider using v1alpha.
[!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.
Supported Client Libraries
Python
If you need to install or set up the Google Analytics Admin API client library for Python, read the setup guide:
- Python Installation Reference (Package:
google-analytics-admin)
Java
If you need to install or set up the Google Analytics Admin API client library for Java, read the setup guide:
- Java Installation Reference (Artifact:
com.google.cloud:google-cloud-analytics-admin)
PHP
If you need to install or set up the Google Analytics Admin API client library for PHP, read the setup guide:
- PHP Installation Reference (Package:
google/analytics-admin)
Node.js
If you need to install or set up the Google Analytics Admin API client library for Node.js, read the setup guide:
- Node.js Installation Reference (Package:
@google-analytics/admin)
Go
If you need to install or set up the Google Analytics Admin API client library for Go, read the setup guide:
- Go Installation Reference (Package:
cloud.google.com/go/analytics/admin/apiv1beta)
.NET
If you need to install or set up the Google Analytics Admin API client library for .NET / C#, read the setup guide:
- .NET Installation Reference (Package:
Google.Analytics.Admin.V1Beta)
Ruby
If you need to install or set up the Google Analytics Admin API client library for Ruby, read the setup guide:
- Ruby Installation Reference (Gem:
google-analytics-admin-v1alpha)
[!NOTE] Additional Resources: For further examples of calling the Admin API with Java, PHP, Node.js, .NET, Python, and REST, as well as hints on authentication with a service account, refer to the official Admin API Quickstart. For complete API reference documentation for both
v1alphaandv1beta, see the Admin API Reference.
Python Quick Start
-
Install the Client Library:
pip install google-analytics-adminIf
pipis not available, prompt the user to installpipbefore installing the client library. -
List Accounts and Properties: Below is a complete example demonstrating how to call the Admin API to list all available accounts and their child properties for the current user using
list_account_summaries().from google.analytics.admin import AnalyticsAdminServiceClient def sample_list_account_summaries(): # Initialize the client. # Assumes Application Default Credentials (ADC) are configured in your environment. client = AnalyticsAdminServiceClient() # list_account_summaries returns a summary of all accounts accessible to the # user and their child properties. account_summaries = client.list_account_summaries() print("Available Google Analytics Accounts and Properties:") for summary in account_summaries: print(f"Account: {summary.display_name} ({summary.account})") for property_summary in summary.property_summaries: print(f" Property: {property_summary.display_name} ({property_summary.property})") if __name__ == "__main__": sample_list_account_summaries()
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
Scrapling
83.7k🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
LocalAI
49.3kLocalAI is the open-source AI engine. Run any model - LLMs, vision, voice, image, video - on any hardware. No GPU required.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
