# Cloud Provider DNS Records Scanner

**Use case:** 

Scan DNS records for major cloud providers like AWS and Azure. Retrieve A, MX, TXT, NS, CNAME, SOA, and CAA records efficiently.

## Input

```json
{
  "domains": [
    "aws.amazon.com",
    "azure.microsoft.com",
    "cloud.google.com",
    "digitalocean.com",
    "linode.com"
  ],
  "recordTypes": [
    "A",
    "AAAA",
    "NS",
    "MX",
    "TXT",
    "CNAME",
    "SOA",
    "CAA"
  ],
  "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.