# Screen a naming shortlist and keep only the free ones

**Use case:** 

Screens 12 candidate domains against the registries' own zone files in one run. Returns only the ones that look free. No WHOIS lookups, no rate limits.

## Input

```json
{
  "candidates": [
    "lumenbarrow.com",
    "lumenmantle.com",
    "lumenfathom.com",
    "lumenwright.com",
    "lumenforge.com",
    "vertexbarrow.com",
    "vertexquill.com",
    "vertexforge.com",
    "quantabarrow.com",
    "quantahollow.com",
    "nimbusbarrow.com",
    "cobaltquill.com"
  ],
  "onlyFree": true,
  "maxResults": 500
}
```

## Output

```json
{
  "candidate": {
    "label": "Candidate",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "tld": {
    "label": "Tld",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "nameservers": {
    "label": "Nameservers",
    "format": "string"
  },
  "dns_provider": {
    "label": "Dns Provider",
    "format": "string"
  },
  "parked_for_sale": {
    "label": "Parked For Sale",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "message": {
    "label": "Message",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Domain Search — Availability Checker for 1,075 TLDs](https://apify.com/oswaldocarabano/domain-availability-screen.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/oswaldocarabano/domain-availability-screen.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/oswaldocarabano/domain-availability-screen.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`).
