# LinkedIn Advertiser Ads Scraper

**Use case:** 

Extract public ads from selected LinkedIn company pages for advertiser research, competitive monitoring, and creative analysis.

## Input

```json
{
  "searchQuery": "Salesforce",
  "advertiserUrls": [
    "https://www.linkedin.com/company/salesforce/",
    "https://www.linkedin.com/company/hubspot/"
  ],
  "maxAds": 30,
  "dateRange": "past-year",
  "adFormat": "SPONSORED_UPDATES",
  "countryCode": "",
  "sortBy": "RECENT",
  "maxRequestRetries": 2
}
```

## Output

```json
{
  "advertiserName": {
    "label": "Advertiser",
    "format": "text"
  },
  "adFormat": {
    "label": "Format",
    "format": "text"
  },
  "headline": {
    "label": "Headline",
    "format": "text"
  },
  "bodyText": {
    "label": "Body",
    "format": "text"
  },
  "ctaLabel": {
    "label": "CTA",
    "format": "text"
  },
  "ctaUrl": {
    "label": "CTA URL",
    "format": "link"
  },
  "mediaUrl": {
    "label": "Media",
    "format": "image"
  },
  "activeStatus": {
    "label": "Status",
    "format": "text"
  },
  "startDate": {
    "label": "Start Date",
    "format": "text"
  },
  "endDate": {
    "label": "End Date",
    "format": "text"
  },
  "countries": {
    "label": "Countries",
    "format": "text"
  },
  "totalImpressions": {
    "label": "Impressions",
    "format": "text"
  },
  "adId": {
    "label": "Ad ID",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [LinkedIn Ad Library Scraper](https://apify.com/automation-lab/linkedin-ad-library-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/linkedin-ad-library-scraper) to learn more, explore other use cases, and run it yourself.