# SocialFetch Google Ad Transparency - List Company Ads

> SocialFetch Google Ad Transparency - List Company Ads is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-15).

List all ads a specific company or advertiser is currently running in Google Ad Transparency, with optional filters for topic, format, platform, region, and date range.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/google/ad-library/companies/ads
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-google-ad-transparency-list-company-ads-8648dbf7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_shGupFNzFNbjdkldvT2o5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-google-ad-transparency-list-company-ads-8648dbf7
```

Example prompt: Can you pull up all the Google ads that nike.com is running right now, filtering to just YouTube video ads?

## When to prefer this

Use this endpoint when you need to enumerate multiple ads for a specific company or advertiser from Google Ad Transparency, especially when you want to paginate through a full ad inventory, apply filters (platform, format, region, date, topic), or conduct competitive research. Prefer this over the single-ad detail endpoint when you need a list view rather than details on one known ad. Use domain as input when you don't have the Google advertiser ID.

## Known failure modes

- Missing both domain and advertiserId — one is required to identify the advertiser
- Invalid advertiserId format returns no results or error
- Region not provided when topic=political — region is required for political ads
- No ads found for the given domain or advertiser ID (advertiser not found in Ad Transparency)
- Invalid date format (must be YYYY-MM-DD) causes validation error
- Invalid enum value for platform, format, or topic causes bad request
- Cursor from a previous query is expired or invalid, requiring a fresh request

## How this service works

List ads a company or advertiser is running in Google Ad Transparency.

## Output

A paginated list of ad creatives from Google Ad Transparency associated with the specified company or advertiser, including creative metadata. Response includes a nextCursor for pagination through additional results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "topic": {
       "enum": [
        "all",
        "political"
       ],
       "type": "string",
       "description": "Optional topic filter. When `political`, `region` is required."
      },
      "cursor": {
       "type": "string",
       "minLength": 1,
       "description": "Opaque pagination cursor from a previous response."
      },
      "domain": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Company domain when you do not have an advertiser id."
      },
      "format": {
       "enum": [
        "text",
        "image",
        "video"
       ],
       "type": "string",
       "description": "Optional creative format filter."
      },
      "region": {
       "type": "string",
       "description": "Optional region filter as a two-letter country code."
      },
      "endDate": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional end date filter in YYYY-MM-DD format."
      },
      "platform": {
       "enum": [
        "google_maps",
        "google_play",
        "google_search",
        "google_shopping",
        "youtube"
       ],
       "type": "string",
       "description": "Optional Google surface filter."
      },
      "startDate": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
       "description": "Optional start date filter in YYYY-MM-DD format."
      },
      "advertiserId": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Google Ad Transparency advertiser id when you have it instead of a domain."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-google-ad-transparency-list-company-ads-8648dbf7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
