# Bulk WHOIS And RDAP Domain Lookup

**Use case:** 

Registrar, creation and expiry dates, registry status codes, transfer lock and registry nameservers. RDAP covers 1,200 top-level domains; the other 238 in the IANA root - .de, .io, .co, .ch, .it, .eu, .jp, .cn and more - fall back to WHOIS on port 43. Registrant names, emails, phones and addresses are never collected.

## Input

```json
{
  "domains": [
    "apify.com",
    "github.com",
    "stripe.com",
    "shopify.com",
    "cloudflare.com",
    "notion.so",
    "figma.com",
    "vercel.com",
    "linear.app",
    "openai.com",
    "bosch.de",
    "zalando.de",
    "booking.com",
    "spotify.com",
    "adobe.com",
    "salesforce.com",
    "hubspot.com",
    "atlassian.com",
    "slack.com",
    "zoom.us"
  ],
  "maxItems": 0,
  "includeRegistration": true,
  "includeDkim": false,
  "dkimSelectorSet": "common",
  "dkimSelectors": [],
  "includeDnssec": true,
  "includeTlsCertificate": false,
  "includeReverseDns": false,
  "requestTimeoutSecs": 8,
  "onlyChanged": false,
  "emitUnchanged": false,
  "watchAddressRecords": false,
  "onlyWithFindings": false,
  "maxPostureScore": 0,
  "minSeverity": "any",
  "findingCodes": [],
  "onlySpoofable": false,
  "expiringWithinDays": 0,
  "onlyResolved": false,
  "compactOutput": false,
  "excludeEmptyFields": false
}
```

## Output

```json
{
  "domain": {
    "label": "domain",
    "format": "string"
  },
  "registrar": {
    "label": "registrar",
    "format": "string"
  },
  "registrar_iana_id": {
    "label": "registrar_iana_id",
    "format": "string"
  },
  "registration_source": {
    "label": "registration_source",
    "format": "string"
  },
  "whois_server": {
    "label": "whois_server",
    "format": "string"
  },
  "created_at": {
    "label": "created_at",
    "format": "string"
  },
  "updated_at": {
    "label": "updated_at",
    "format": "string"
  },
  "expires_at": {
    "label": "expires_at",
    "format": "string"
  },
  "days_until_expiry": {
    "label": "days_until_expiry",
    "format": "integer"
  },
  "domain_age_days": {
    "label": "domain_age_days",
    "format": "integer"
  },
  "registry_status": {
    "label": "registry_status",
    "format": "array"
  },
  "transfer_locked": {
    "label": "transfer_locked",
    "format": "boolean"
  },
  "registry_nameservers": {
    "label": "registry_nameservers",
    "format": "array"
  },
  "ns_records": {
    "label": "ns_records",
    "format": "array"
  },
  "registry_dnssec": {
    "label": "registry_dnssec",
    "format": "boolean"
  },
  "registration_error": {
    "label": "registration_error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [WHOIS Lookup, DNS Records Scraper - DMARC, SPF, DKIM Checker](https://apify.com/snow_leo_data/whois-dns-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/whois-dns-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/whois-dns-lookup.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
