What problem does it solve?
This Skill streamlines access to Google Ads data, enabling users to query campaigns, ad groups, keywords, and performance metrics using GAQL, reducing the time and effort required for campaign management.
Core Features & Use Cases
- Campaign and Ad Group Management: Retrieve and manage details about campaigns and ad groups.
- Keyword Analysis: Query keyword performance metrics and match types.
- Performance Metrics: Access detailed performance data for campaigns, ad groups, and keywords.
- Use Case: Suppose you want to analyze the performance of a specific ad group over the past month. Use this Skill to run a GAQL query and get insights into impressions, clicks, and cost.
Quick Start
To list accessible customers, use the following command:
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://gateway.maton.ai/google-ads/v23/customers:listAccessibleCustomers')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF