# SocialFetch Google Ad Transparency Creative Lookup

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

Retrieves a single Google Ad Transparency creative by its public Ad Transparency URL.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/google/ad-library/ads
- Price: $0.014/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-creative-lookup-077b41ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X3HphmdciLePIqh55uW1A

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-creative-lookup-077b41ee
```

Example prompt: Can you pull up the details for this Google Ad Transparency creative: https://adstransparency.google.com/advertiser/AR12345678/creative/CR98765432 — I want to see what the ad looks like and who ran it.

## When to prefer this

Use this endpoint when you have a specific Google Ad Transparency URL and need to retrieve the full creative details for that single ad. Prefer this over search-based endpoints when you already know the exact ad URL. Ideal for ad intelligence, competitive research, ad verification, or when a user shares a direct Google Ad Transparency link.

## Known failure modes

- Invalid or malformed Google Ad Transparency URL returns an error
- Ad creative no longer publicly available or removed from Google Ad Transparency
- Non-Google Ad Transparency URL provided returns a validation error
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- URL parameter missing or empty returns a schema validation error

## How this service works

Get a single Google Ad Transparency creative by public Ad Transparency URL.

## Output

Returns structured metadata about the Google ad creative including advertiser information, ad content, creative assets, and transparency data as listed in the Google Ad Transparency Center for the given URL.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Public Google Ad Transparency URL for the creative."
      }
     }
    }
   },
   "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-creative-lookup-077b41ee/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)
