## meta_ads/ad

`GET /v1/meta_ads/ad`

One Meta ad by archive id: full creative snapshot, platforms, run dates, and spend/reach where the Ad Library discloses them.

*Ad details*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Ad archive id from a search or company-ads result. — e.g. `1702938977100376` |
| `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/meta_ads/ad?id=1702938977100376" \
  -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
{
  "body": "example",
  "cta": "example",
  "display_format": "example",
  "ended_at": "2026-09-01T12:00:00Z",
  "id": "example",
  "images": [],
  "is_active": false,
  "link_url": "https://example.com/example",
  "page": {
    "id": "example",
    "name": "example"
  },
  "platform": "example",
  "publisher_platforms": [
    "example"
  ],
  "started_at": "2026-09-01T12:00:00Z",
  "title": "example",
  "videos": []
}
```

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