# CNAME Lookup for Major CDN Providers

**Use case:** 

Check CNAME records for top CDN providers like Cloudflare and Akamai. Receive detailed results for domains and their associated records.

## Input

```json
{
  "domains": [
    "cloudflare.com",
    "fastly.com",
    "akamai.com",
    "cloudfront.net",
    "jsdelivr.net",
    "unpkg.com",
    "cdnjs.cloudflare.com",
    "stackpath.com",
    "keycdn.com",
    "bunny.net"
  ],
  "recordTypes": [
    "CNAME",
    "A",
    "NS"
  ],
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "text"
  },
  "ttl": {
    "label": "TTL (s)",
    "format": "number"
  },
  "resolver": {
    "label": "Resolver",
    "format": "text"
  },
  "checkedAt": {
    "label": "Checked At",
    "format": "datetime"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk DNS Records Lookup - A, MX, TXT, NS, CNAME](https://apify.com/logiover/bulk-dns-records-lookup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/bulk-dns-records-lookup) to learn more, explore other use cases, and run it yourself.