Go back
Google Ads

Google Ads

v1 · 2 endpoints

Google Ads (2)

API Explorer

— credits
ColdIQ
APIs→Google Ads
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/google-ads/search0.21 cr

Start an async job to scrape Google Ads from the Ads Transparency Center. Search by advertiser name, domain, or ID. Retu…

Authentication

No API key — create one in the dashboard

Body

Search for advertisers by name (e.g., Nike, Apple, Coca-Cola). Finds matching advertisers and scrapes their ads. Max 25 items.

Search ads by website domain (e.g., nike.com, apple.com). Max 25 items.

Direct advertiser IDs from Google Ads Transparency Center (e.g., AR16735076323512287233). Max 25 items.

Filter ads shown in a specific country (ISO code). Leave empty for all regions.

Maximum number of ads to scrape per advertiser or domain. Defaults to 100.

import requests

url = "https://api.coldiq.com/v1/google-ads/search"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())