# Check if a Domain Has DNSSEC Enabled

**Use case:** 

Verify DNSSEC status via RDAP plus full DNS records — spot unsigned domains in one call.

## Input

```json
{
  "domains": [
    "cloudflare.com"
  ],
  "includeDns": true,
  "includeWhois": true,
  "includeSsl": true,
  "timeoutSecs": 15
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "registered": {
    "label": "Registered",
    "format": "boolean"
  },
  "registrar": {
    "label": "Registrar",
    "format": "text"
  },
  "expiryDate": {
    "label": "Expires",
    "format": "text"
  },
  "daysUntilExpiry": {
    "label": "Days Left",
    "format": "number"
  },
  "sslDaysRemaining": {
    "label": "SSL Days",
    "format": "number"
  },
  "ipAddresses": {
    "label": "IPs",
    "format": "array"
  },
  "nameservers": {
    "label": "Nameservers",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk WHOIS, DNS & SSL Lookup — Domain Intelligence API](https://apify.com/fetchbase/domain-dns-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetchbase/domain-dns-intelligence) to learn more, explore other use cases, and run it yourself.