# Google Ad Library Advertiser Search

> Google Ad Library Advertiser Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Searches for advertisers in Google's Ad Library by keyword or query string

## Facts

- Endpoint: GET https://x402.orthogonal.com/scrapecreators/v1/google/adLibrary/advertisers/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/google-ad-library-advertiser-search-2595cb80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CKwFj0amOWHWlHx_QwwC7

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 google-ad-library-advertiser-search-2595cb80
```

Example prompt: Search Google's Ad Library for advertisers related to 'electric vehicles' — I want to see which brands are actively running ads on that topic.

## When to prefer this

Use this endpoint when you need to discover or research advertisers in Google's public Ad Library by name or keyword. It is ideal for competitive intelligence, brand safety monitoring, ad transparency research, or identifying political advertisers. Prefer this over a generic web search when you need structured advertiser data from Google's ad transparency system specifically.

## Known failure modes

- Empty results if query matches no known advertisers in Google's Ad Library
- Rate limiting or HTTP 429 if too many requests are made in quick succession
- Malformed or missing query parameter may return an error or empty response
- Google Ad Library may not surface all advertisers if they have limited ad activity
- Upstream Google Ad Library changes may cause unexpected response structure changes

## How this service works

Advertiser Search

## Output

A list of advertiser profiles found in Google's Ad Library matching the search query, likely including advertiser names, IDs, and related metadata such as ad counts or verification status.

## 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": {
      "query": {
       "type": "string",
       "description": "The query to search for"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/google-ad-library-advertiser-search-2595cb80/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
