Google Ads API

Google Ads Ad details API

Look up a single Google Ads Transparency Center creative by URL and get its format, run dates, impression range, regions, and creative variations as clean JSON.

POST/v1/run/google_ads.ad_details
Uptime
100.00%
30d · 23 calls
Requests
23
30d · weekly, last 12 wks
Response
2.2s
median · 30d

Pricing

One price, in dollars

Providers
Giraffe23 served100.00% uptime2130ms 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": {
    "advertiserId": "a1b2c3d4",
    "creativeId": "a1b2c3d4",
    "firstShown": "example",
    "format": "example",
    "impressionsMax": 12500,
    "impressionsMin": 12500,
    "lastShown": "example",
    "variations": [
      {
        "allText": "A short example description of this item.",
        "description": "A short example description of this item.",
        "destinationUrl": "https://example.com/page",
        "headline": "Example title",
        "imageUrl": "https://example.com/image.jpg"
      }
    ]
  },
  "found": true
}
Response interface
interface GoogleAdsAdDetailsResponse {
  data: {
    advertiserId: string;
    creativeId: string;
    firstShown: string;
    format: string;
    impressionsMax: number;
    impressionsMin: number;
    lastShown: string;
    variations: {
      allText: string;
      description: string;
      destinationUrl: string;
      headline: string;
      imageUrl: 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.ad_details
curl -X POST https://api.getanyapi.com/v1/run/google_ads.ad_details \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://adstransparency.google.com/advertiser/AR01614014350098432001/creative/CR10449491775734153217"}'
FieldTypeExample value
Request body
urlstring"https://adstransparency.google.com/advertiser/AR01614014350098432001/creative/CR10449491775734153217"Google Ads Transparency Center creative URL (e.g. "https://adstransparency.google.com/advertiser/AR.../creative/CR...").
Response
dataobject
data.advertiserIdstringPopulated whenever the provider has data for the entity.
data.creativeIdstringPopulated whenever the provider has data for the entity.
data.firstShownstringISO 8601 date.
data.formatstringPopulated whenever the provider has data for the entity.
data.impressionsMaxinteger
data.impressionsMininteger
data.lastShownstringISO 8601 date.
data.variationsobject[]Populated whenever the provider has data for the entity.
data.variations[].allTextstring
data.variations[].descriptionstring
data.variations[].destinationUrlstring
data.variations[].headlinestring
data.variations[].imageUrlstring
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Google Ads Ad details API

The AnyAPI Google Ads Ad details API returns Google Ads ad details data as normalized JSON from one POST call to /v1/run/google_ads.ad_details. Look up a single Google Ads Transparency Center creative by URL and get its format, run dates, impression range, regions, and creative variations 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, 100.0% of Google Ads ad details calls through AnyAPI succeeded, with a median response time of 2.2 seconds across 23 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.

Look up a single Google Ads Transparency Center creative by URL and get its format, run dates, impression range, regions, and creative variations 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, 100.0% of Google Ads ad details calls through AnyAPI succeeded, with a median response time of 2.2 seconds across 23 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.