# Competitor domain registration extractor

**Use case:** 

Extract domain registration data for competitor websites including registered status, registrar, created date, expiry date, and errors.

## Input

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

## Output

```json
{
  "domain": {
    "label": "Domain"
  },
  "available": {
    "label": "Available"
  },
  "registered": {
    "label": "Registered"
  },
  "registrar": {
    "label": "Registrar"
  },
  "createdDate": {
    "label": "Created"
  },
  "expiryDate": {
    "label": "Expires"
  },
  "checkTimeMs": {
    "label": "Time (ms)"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Domain Availability Checker — Bulk DNS & WHOIS Lookup](https://apify.com/automation-lab/domain-availability-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/domain-availability-checker) to learn more, explore other use cases, and run it yourself.