一键导入
gmp-ads-campaigns
Google Ads: Campaign performance reports with date ranges and status filters.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Google Ads: Campaign performance reports with date ranges and status filters.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Google Tag Manager: Accounts, containers, tags, triggers, variables, and versions.
BigQuery: Run pre-built query templates against GMP export datasets.
BigQuery: Query GMP export data (GA4, Ads, GSC) with pre-built templates and custom SQL.
Recipe: GA4 funnel analysis via BigQuery — session_start → page_view → add_to_cart → checkout → purchase.
Google Ads: Campaigns, ad groups, keywords, search terms, and raw GAQL queries.
GSC: Search analytics reports with dimensions, filters, and date ranges.
| name | gmp-ads-campaigns |
| version | 1.0.0 |
| description | Google Ads: Campaign performance reports with date ranges and status filters. |
| metadata | {"openclaw":{"category":"advertising","requires":{"bins":["gmp"]},"cliHelp":"gmp ads campaigns --help"}} |
PREREQUISITE: Read
../gmp-shared/SKILL.mdfor auth and../gmp-ads/SKILL.mdfor Ads-specific setup.
Campaign performance report with metrics like impressions, clicks, cost, conversions, and CTR.
gmp ads campaigns -c <CUSTOMER_ID> [flags]
| Flag | Required | Default | Description |
|---|---|---|---|
-c, --customer-id <id> | Yes | -- | Google Ads customer ID |
-r, --date-range <range> | No | LAST_30_DAYS | Date range constant |
--status <s> | No | -- | Filter: ENABLED, PAUSED, REMOVED |
-l, --limit <n> | No | 50 | Row limit |
-f, --format <fmt> | No | json | Output format: json, table, csv |
| Column | Description |
|---|---|
campaign | Campaign name |
status | ENABLED, PAUSED, REMOVED |
type | Channel type (SEARCH, DISPLAY, VIDEO, etc.) |
impressions | Total impressions |
clicks | Total clicks |
cost | Total cost (converted from micros) |
conversions | Total conversions |
convValue | Total conversion value |
ctr | Click-through rate (percentage) |
avgCpc | Average cost per click (converted from micros) |
# All campaigns, last 30 days
gmp ads campaigns -c 1234567890 -f table
# Only enabled campaigns
gmp ads campaigns -c 1234567890 --status ENABLED -f table
# Last 7 days
gmp ads campaigns -c 1234567890 -r LAST_7_DAYS -f table
# Export to CSV
gmp ads campaigns -c 1234567890 -f csv > campaigns.csv
# Pipe to jq for top spenders
gmp ads campaigns -c 1234567890 | jq 'sort_by(.cost | tonumber) | reverse | .[0:5]'