# Audit CNN's Authorized Digital Ad Sellers

**Use case:** 

Parse CNN ads.txt into advertising systems, publisher IDs, DIRECT or RESELLER relationships, and certification authority IDs.

## Input

```json
{
  "targets": [
    "https://www.cnn.com/ads.txt"
  ],
  "maxResults": 3
}
```

## Output

```json
{
  "domain": {
    "label": "Publisher domain",
    "format": "text"
  },
  "exchange_domain": {
    "label": "Advertising system",
    "format": "text"
  },
  "publisher_id": {
    "label": "Publisher ID",
    "format": "text"
  },
  "relationship": {
    "label": "Relationship",
    "format": "text"
  },
  "certification_authority_id": {
    "label": "Certification authority ID",
    "format": "text"
  },
  "line_number": {
    "label": "Line",
    "format": "number"
  },
  "source_url": {
    "label": "Ads.txt URL",
    "format": "link"
  },
  "status_code": {
    "label": "HTTP status",
    "format": "number"
  },
  "raw_line": {
    "label": "Raw declaration",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Ads.txt Scraper - Publisher Ad Seller Data](https://apify.com/benthepythondev/ads-txt-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/ads-txt-scraper) to learn more, explore other use cases, and run it yourself.