# Check My DNS: Compare an Expected A Record

**Use case:** 

Check the A record for example.com across 10 public DNS resolvers and compare it with 93.184.216.34. Review match status, answers, coverage, and summary.

## Input

```json
{
  "domains": [
    "example.com"
  ],
  "recordTypes": [
    "A"
  ],
  "expectedAnswers": [
    {
      "domain": "example.com",
      "recordType": "A",
      "expectedValues": [
        "93.184.216.34"
      ]
    }
  ],
  "queryTimeoutMs": 5000,
  "includeSummary": true
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "propagationStatus": {
    "label": "Propagation status",
    "format": "string"
  },
  "coverageStatus": {
    "label": "Resolver coverage",
    "format": "string"
  },
  "expectedValues": {
    "label": "Expected values",
    "format": "array"
  },
  "expectedStatus": {
    "label": "Expected result",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  },
  "resolverResults": {
    "label": "Resolver results",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [DNS Propagation Checker](https://apify.com/maximedupre/dns-propagation-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/dns-propagation-checker) to learn more, explore other use cases, and run it yourself.