How to Scrape Google Ads Transparency Center in 2026 (Complete Guide)
See exactly what ads your competitors run on Google Search, YouTube, Maps, and Shopping. Learn how to extract ad creative data at scale from Google's Ads Transparency Center.
Want to see exactly what ads your competitors are running on Google Search, YouTube, Maps, and Shopping? Google's Ads Transparency Center makes this possible — and in this guide, you'll learn how to extract that data at scale.
What is the Google Ads Transparency Center?
Google launched the Ads Transparency Center to let anyone view ads running across all Google platforms. It covers:
- Google Search — text ads appearing in search results
- YouTube — video and display ads
- Google Maps — local business promotions
- Google Shopping — product listing ads
- Google Play — app install ads
For each ad, you can see the creative content (image, video, or text), when it first and last ran, which regions it targeted, and the verified advertiser name.
What Data Can You Actually Get?
Here's what the Transparency Center exposes per ad:
| Field | Available? |
|---|---|
| Advertiser name & verification status | Yes |
| Ad creative (image/video/text) | Yes |
| First shown & last shown dates | Yes |
| Regions where ad ran | Yes |
| Ad format (text/image/video) | Yes |
| Landing page URL | Partial (image ads only) |
| Impression counts | No (EU political ads only) |
| Ad spend / budget | No |
| Keyword targeting | No |
This is still incredibly valuable for competitive research — you can see every creative a competitor has ever run, when they launched campaigns, and which regions they target.
Why Scrape It? Real Use Cases
1. Competitor Creative Analysis
Manually browsing the Transparency Center works for checking one competitor. But what if you're tracking 20 competitors across 5 markets? You need automation.
A typical workflow:
- Extract all ad creatives from your top 5 competitors
- Track which creatives have been running the longest (proven winners)
- Identify new campaign launches (creatives with recent "first shown" dates)
- Compare creative strategies across regions
2. Ad Intelligence for Agencies
Agencies pitch new clients by showing market awareness. Having data on what the client's competitors are running — their exact ad copy, images, and campaign timelines — is a powerful sales tool.
3. Brand Safety Monitoring
Track if anyone is running ads using your brand name or logo. The Transparency Center shows all verified advertisers, making it easy to spot trademark infringement.
Manual vs. Automated Approach
Manual Browsing
Visit adstransparency.google.com, search for an advertiser, and scroll through their ads. This works for quick checks but breaks down when you need:
- More than 50 ads per advertiser
- Data from multiple advertisers
- Structured data for analysis (CSV/JSON)
- Regular monitoring (weekly/monthly)
API-Based Scraping
Google doesn't offer an official API for the Transparency Center. However, the website uses internal RPC endpoints that can be called programmatically:
- Search for advertisers — The suggestion endpoint resolves keywords like "Nike" to advertiser IDs (AR-prefixed)
- Fetch creatives — The search endpoint returns all ad creatives for an advertiser, with pagination
- Get details — Individual creative endpoints return additional metadata
The technical challenge is that these endpoints use Google's proprietary proto-JSON format (numbered field keys like {"1": "value", "2": {...}}), not standard REST.
Third-Party Tools
Several tools wrap this complexity:
- SerpApi ($25-275/month) — managed API with clean JSON output
- DataForSEO ($0.0006/request) — cheapest per-request for high volume
- Apify actors — cloud-based scrapers with pay-per-result pricing
How to Extract Google Ads Data at Scale
Here's a practical approach using Apify:
Step 1: Search by keyword or domain — the scraper auto-resolves to the correct advertiser ID
{
"searchQuery": "nike",
"region": "2840",
"maxResults": 100,
"quickSearch": true
}
Step 2: Get structured output with every creative's metadata:
{
"advertiserId": "AR16735076323512287233",
"advertiserName": "Nike, Inc.",
"creativeId": "CR04739221842466701313",
"adFormat": "IMAGE",
"firstShown": "2023-11-16",
"lastShown": "2026-04-09",
"numServedDays": 875,
"imageUrl": "https://tpc.googlesyndication.com/..."
}
Step 3: Export to CSV/Excel for analysis, or pipe into your dashboard via API.
Tools Comparison
| Tool | Pricing | Keyword Search | All Platforms | Output |
|---|---|---|---|---|
| Manual browsing | Free | Yes | Yes | None (copy/paste) |
| SerpApi | $25-275/mo | Needs advertiser ID | Yes | JSON |
| DataForSEO | $0.0006/req | Yes | Yes | JSON |
| Google Ads Transparency Scraper | $0.005/ad | Yes (auto-lookup) | Yes | JSON/CSV/Excel |
Tips for Effective Ad Research
- Track over time — Run weekly scrapes to catch new campaign launches
- Compare regions — The same brand runs different creatives in different markets
- Focus on longevity — Ads running for 6+ months are proven performers worth studying
- Filter by format — Analyze video and image strategies separately
- Cross-reference with Meta — Brands running Google ads usually run Meta ads too
Getting Started
The fastest way to start is with the Google Ads Transparency Scraper on Apify. Just type a brand name, select a region, and get structured data in seconds. No API key, no login, no coding required.
For developers, the output integrates directly with n8n, Make, Zapier, Google Sheets, and any tool that accepts JSON webhooks.