Google Ads Company ads API
List the ads a company is running from the Google Ads Transparency Center by domain or advertiser ID (creative ID, format, ad URL, and first/last shown dates) with cursor pagination.
Try it
Make your first request
{
"data": {
"ads": [
{
"adUrl": "https://example.com/page",
"advertiserId": "a1b2c3d4",
"advertiserName": "Example title",
"creativeId": "a1b2c3d4",
"firstShown": "example",
"format": "example",
"imageUrl": "https://example.com/image.jpg",
"lastShown": "example"
}
],
"adsEstimate": 42,
"nextCursor": "example"
},
"found": true
}interface GoogleAdsCompanyAdsResponse {
data: {
ads: {
adUrl: string;
advertiserId: string;
advertiserName: string;
creativeId: string;
firstShown: string;
format: string;
imageUrl: string;
lastShown: string;
}[];
adsEstimate: number;
nextCursor: string | null;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dcurl -X POST https://api.getanyapi.com/v1/run/google_ads.company_ads \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"lululemon.com"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| advertiserId | string | Advertiser ID. Provide either domain or advertiserId. |
| cursor | string | Opaque pagination cursor from a previous response's nextCursor. |
| domain | string | "lululemon.com"Company domain (e.g. "lululemon.com"). Provide either domain or advertiserId. |
| endDate | string | Only return ads first shown on or before this date, format YYYY-MM-DD (e.g. 2024-12-31). |
| format | enum | Ad format filter. |
| platform | enum | Platform filter. |
| region | string | Two-letter country code to scope results (e.g. "US", "AU"). |
| startDate | string | Only return ads first shown on or after this date, format YYYY-MM-DD (e.g. 2024-01-01). |
| topic | enum | Search topic. "political" requires a region. |
| Response | ||
| data | object | |
| data.ads | object[] | Populated whenever the provider has data for the entity. |
| data.ads[].adUrl | string | Populated whenever the provider has data for the entity. |
| data.ads[].advertiserId | string | Populated whenever the provider has data for the entity. |
| data.ads[].advertiserName | string | Populated whenever the provider has data for the entity. |
| data.ads[].creativeId | string | Populated whenever the provider has data for the entity. |
| data.ads[].firstShown | string | ISO 8601 date. |
| data.ads[].format | string | Populated whenever the provider has data for the entity. |
| data.ads[].imageUrl | string | |
| data.ads[].lastShown | string | ISO 8601 date. |
| data.adsEstimate | integer | Estimated total number of ads. |
| data.nextCursor | string | Opaque cursor for the next page of ads, or null when this lane has no more. Pass it back as cursor to continue. |
| found | boolean | |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the Google Ads Company ads API
The AnyAPI Google Ads Company ads API returns Google Ads company ads data as normalized JSON from one POST call to /v1/run/google_ads.company_ads. List the ads a company is running from the Google Ads Transparency Center by domain or advertiser ID (creative ID, format, ad URL, and first/last shown dates) with cursor pagination. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 94.7% of Google Ads company ads calls through AnyAPI succeeded, with a median response time of 1.2 seconds across 417 measured calls.