## linkedin_ads/ad

`GET /v1/linkedin_ads/ad`

One LinkedIn ad by its ad-library URL: creative, advertiser, targeting disclosures and impression data.

*Ad details*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | LinkedIn ad-library detail URL from a search result. — e.g. `https://www.linkedin.com/ad-library/detail/1507751473` |
| `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/linkedin_ads/ad?url=https%3A%2F%2Fwww.linkedin.com%2Fad-library%2Fdetail%2F1507751473" \
  -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_type": "example",
  "advertiser": {
    "logo": "example",
    "name": "example",
    "url": "https://example.com/example"
  },
  "carousel_images": [],
  "creative_type": "example",
  "cta": "example",
  "description": "example",
  "destination_url": "https://example.com/example",
  "end_date": "2026-09-01T12:00:00Z",
  "headline": "example",
  "id": "example",
  "image": "https://example.com/example",
  "impressions_per_country": [
    {
      "country": "example",
      "impressions": "example"
    }
  ],
  "platform": "example",
  "start_date": "2026-09-01T12:00:00Z",
  "targeting": {
    "language": "example",
    "location": "example"
  },
  "total_impressions": "example",
  "url": "https://example.com/example"
}
```

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