# Bulk WHOIS domain lookup

**Use case:** 

Look up WHOIS registration data for multiple domains including registrar, creation date, expiry date, name servers, and age.

## Input

```json
{
  "domains": [
    "apify.com",
    "github.com",
    "npmjs.com"
  ]
}
```

## Output

```json
{
  "domain": {
    "label": "Domain"
  },
  "registrar": {
    "label": "Registrar"
  },
  "createdDate": {
    "label": "Created"
  },
  "expiryDate": {
    "label": "Expires"
  },
  "daysUntilExpiry": {
    "label": "Days to Expiry"
  },
  "domainAgeDays": {
    "label": "Age (days)"
  },
  "nameServers": {
    "label": "Name Servers"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [WHOIS Lookup](https://apify.com/automation-lab/whois-lookup) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/whois-lookup) to learn more, explore other use cases, and run it yourself.