# 🌐 Domain Inspector — WHOIS, DNS & SSL Lookup

**Use case:** 

No-code, cheap domain API. Scrape domain data: WHOIS registrar, registration date, expiry date, nameservers, DNS records, SSL expiry — cheapest per item.

## Input

```json
{
  "domains": [
    "google.com",
    "apify.com"
  ],
  "includeRdap": true,
  "includeDns": true,
  "includeSsl": true,
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "registrableDomain": {
    "label": "Registrable Domain",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  },
  "ssl": {
    "label": "Ssl",
    "format": "text"
  },
  "dns": {
    "label": "Dns",
    "format": "text"
  },
  "rdapError": {
    "label": "Rdap Error",
    "format": "text"
  },
  "registrar": {
    "label": "Registrar",
    "format": "text"
  },
  "createdDate": {
    "label": "Created Date",
    "format": "date"
  },
  "updatedDate": {
    "label": "Updated Date",
    "format": "date"
  },
  "expiryDate": {
    "label": "Expiry Date",
    "format": "date"
  },
  "statuses": {
    "label": "Statuses",
    "format": "text"
  },
  "nameservers": {
    "label": "Nameservers",
    "format": "text"
  }
}
```

## About this Actor

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