Skip to content

Company Ads

GET /v1/google/company/ads

Fetches public ads for a company from the Google Ad Transparency Library by domain or advertiser_id. Each ad includes advertiserId, creativeId, format, adUrl, advertiserName, domain, firstShown, and lastShown. Costs 25 credits per request when get_ad_details=true; without it, only advertiserId and creativeId are returned at 1 credit.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
domainstringnoThe domain of the companylululemon.com
advertiser_idstringnoThe advertiser id of the companyAR01614014350098432001
topicenum(all, political)noThe topic to search for. If you search for 'political', you will also need to pass a 'region', like 'US' or 'AU'all
regionstringnoThe region to search for. Defaults to anywhereUS
start_datestringnoStart date to search for. Format: YYYY-MM-DD2025-08-01
end_datestringnoEnd date to search for. Format: YYYY-MM-DD2025-08-11
get_ad_detailsstringnoSet to true to get the ad details. Will cost 25 credits.false
cursorstringnoCursor to paginate through resultsCgoAP7znOo9RPjf%2FEhD5utgx8m75NrTTbU0AAAAAGgn8%2BJyW%2BJQK40A%3D

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/google/company/ads' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({  });
const res = await fetch(`https://api.scrapecreators.com/v1/google/company/ads?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/google/company/ads',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators google-ads company-ads --help

Example Response

json
{
  "success": true,
  "credits_remaining": 49998226428,
  "ads": [
    {
      "advertiserId": "AR01614014350098432001",
      "creativeId": "CR08567627846124568577",
      "format": "image",
      "adUrl": "https://adstransparency.google.com/advertiser/AR01614014350098432001/creative/CR08567627846124568577",
      "advertiserName": "lululemon athletica canada inc.",
      "imageUrl": null,
      "firstShown": "2026-03-11T17:08:22.000Z",
      "lastShown": "2026-05-04T17:59:12.000Z"
    }
  ],
  "cursor": "CgoAP7zmu%2FzKj6ijEhBBAgiPtk1y16J9lpkAAAAAGgn8%2BHbW%2BJylE6g%3D",
  "number_of_ads_estimate": 20000
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.