## google_ads/ad

`GET /v1/google_ads/ad`

One Google ad creative: impression band, regions shown, and the creative variations (headline, description, destination).

*Ad details*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | adstransparency.google.com creative URL from google_ads/company-ads. — e.g. `https://adstransparency.google.com/advertiser/AR02903092099014459393/creative/CR09470540953698697217` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 4 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/google_ads/ad?url=https%3A%2F%2Fadstransparency.google.com%2Fadvertiser%2FAR02903092099014459393%2Fcreative%2FCR09470540953698697217" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "ad_url": "https://example.com/example",
  "advertiser_id": "example",
  "creative_id": "example",
  "format": "example",
  "impressions": {},
  "last_shown": "example",
  "platform": "example",
  "regions": [
    "example"
  ],
  "variations": [
    {
      "description": "example",
      "destination_url": "https://example.com/example",
      "headline": "example"
    }
  ]
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/google_ads/ad#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/google_ads/ad.json)
