Google Ads API

Google Ads Advertiser search API

Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON.

POST/v1/run/google_ads.advertiser_search
Uptime
81.82%
30d · 22 calls
Requests
22
30d · weekly, last 12 wks
Response
0.9s
median · 30d

Pricing

One price, in dollars

Providers
Giraffe18 served100.00% uptime739ms p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "advertisers": [
      {
        "adsEstimate": 42,
        "advertiserId": "a1b2c3d4",
        "name": "Example title",
        "region": "CA"
      }
    ]
  },
  "found": true
}
Response interface
interface GoogleAdsAdvertiserSearchResponse {
  data: {
    advertisers: {
      adsEstimate: number;
      advertiserId: string;
      name: string;
      region: string;
    }[];
  } | 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 30d
POST /v1/run/google_ads.advertiser_search
curl -X POST https://api.getanyapi.com/v1/run/google_ads.advertiser_search \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"lululemon"}'
FieldTypeExample value
Request body
querystring"lululemon"Advertiser name or keyword to search for (e.g. "lululemon").
regionstringTwo-letter country code to scope results (e.g. "AU", "CA"). Defaults to US.
Response
dataobject
data.advertisersobject[]Populated whenever the provider has data for the entity.
data.advertisers[].adsEstimateintegerEstimated number of ads for this advertiser/region.
data.advertisers[].advertiserIdstringPopulated whenever the provider has data for the entity.
data.advertisers[].namestringPopulated whenever the provider has data for the entity.
data.advertisers[].regionstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Google Ads Advertiser search API

The AnyAPI Google Ads Advertiser search API returns Google Ads advertiser search data as normalized JSON from one POST call to /v1/run/google_ads.advertiser_search. Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON. 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, 81.8% of Google Ads advertiser search calls through AnyAPI succeeded, with a median response time of 0.9 seconds across 22 measured calls.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Search the Google Ads Transparency Center for advertisers by keyword and get matching advertiser IDs, regions, and estimated ad counts as clean JSON. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 81.8% of Google Ads advertiser search calls through AnyAPI succeeded, with a median response time of 0.9 seconds across 22 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.