# Scrape Competitor YouTube Video Ads

**Use case:** 

Pull a brand's YouTube video ad creatives from Google's Transparency Center: advertiser, preview links, and first and last shown dates.

## Input

```json
{
  "queries": [
    "samsung.com"
  ],
  "region": "anywhere",
  "dateRangePreset": "LAST_30_DAYS",
  "adFormat": "VIDEO",
  "platform": "YOUTUBE",
  "maxAdsPerAdvertiser": 5,
  "enrichLandingPages": false,
  "landingPageTimeoutSecs": 15
}
```

## Output

```json
{
  "advertiserName": {
    "label": "Advertiser"
  },
  "advertiserDomain": {
    "label": "Domain"
  },
  "adFormat": {
    "label": "Format"
  },
  "firstShown": {
    "label": "First seen"
  },
  "lastShown": {
    "label": "Last seen"
  },
  "previewUrl": {
    "label": "Preview",
    "format": "link"
  },
  "landingUrl": {
    "label": "Landing page",
    "format": "link"
  },
  "noAdsFound": {
    "label": "No ads found"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Ads Transparency Scraper - Ad Creatives + Landing Pages](https://apify.com/jaybird/google-ads-transparency-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jaybird/google-ads-transparency-scraper) to learn more, explore other use cases, and run it yourself.