# Check Domain Registration Status

**Use case:** 

Check whether a domain is currently registered and get its expiry date, registrar and nameservers straight from the registry's RDAP service, as JSON. A domain that is free comes back as a clean is_registered: false row, never an error.

## Input

```json
{
  "domains": [
    "github.com",
    "apify.com"
  ],
  "maxDomains": 10,
  "includeDns": false,
  "dnsTypes": [
    "A",
    "MX",
    "NS",
    "TXT"
  ],
  "includeTls": false
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "is_registered": {
    "label": "Registered",
    "format": "boolean"
  },
  "registrar_name": {
    "label": "Registrar",
    "format": "string"
  },
  "expires_at": {
    "label": "Expires",
    "format": "string"
  },
  "days_until_expiry": {
    "label": "Days left",
    "format": "number"
  },
  "mail_provider": {
    "label": "Mail provider",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Domain Checker – RDAP Expiry, DNS & SSL, No WHOIS Contacts](https://apify.com/rowfeed/domain-rdap-checker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rowfeed/domain-rdap-checker.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/rowfeed/domain-rdap-checker.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`).
