# AI Domains Database – 900K+ Active .AI Domains (`devbox123/domains-ai-1`) Actor

Download 900,000+ active, registered .ai domains. Updated monthly. Perfect for threat intelligence, lead generation, and market research.

- **URL**: https://apify.com/devbox123/domains-ai-1.md
- **Developed by:** [devbox123](https://apify.com/devbox123) (community)
- **Categories:** Lead generation, AI, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.10 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### .AI Domain Zone File & Active Registration Dataset

Boost your market research, cyber security, and lead generation with the most comprehensive dataset of registered .ai domains. This Actor provides a clean, verified list of over 900,000+ active .ai domains, acting as a premium alternative to the restricted .ai zone file.

### 🚀 Why Use This Dataset?

The official .ai registry does not publicly share its zone file. This Actor solves that problem. It delivers a massive, continuously updated database of live .ai websites, giving you a competitive edge in the booming artificial intelligence sector.

### 💡 Key Features

- 900,000+ Domains: The largest commercially available collection of verified active .ai domains.
- Monthly Updates: Fresh data crawled and verified every month to remove dead domains.
- Live & Active: Unlike raw DNS dumps, these domains are verified as active.
- Turnkey Export: Download instantly in JSON, CSV, Excel, or XML via Apify.

### 🎯 Target Use Cases

- Lead Generation: Find new AI startups, tech companies, and potential clients.
- Cybersecurity & Threat Intel: Monitor brand infringement, typosquatting, and phishing.
- Market & Trend Analysis: Track the growth of the AI ecosystem and trending keywords.
- Domain Flipping: Discover dropped domains or evaluate the valuation of the .ai market.

### 📥 Input Parameters

This Actor is extremely simple to run. You do not need complex configuration:

- Limit (Optional): Set the maximum number of domains you want to export.
- Offset (Optional): Set the maximum number of domains you want to skip in export (paging).

### 📤 Output Example

The Actor outputs a clean, structured list ready for your data pipeline:

```json
[
  {
    "domain": "example.ai"
  },
  {
    "domain": "mywebsite.ai"
  }
]
```

### 🛠️ Data Structure & Technical Specifications

The Actor is built with efficiency in mind. It delivers lightning-fast exports of the dataset into your preferred format. The output schema is kept clean and lightweight to ensure seamless integration into your existing data pipelines, SIEM platforms, or CRM systems.

### Output Data Fields:

- domain: The full, registered domain name (e.g., myeye.ai).

# Actor input Schema

## `limit` (type: `integer`):

Maximum number of domains to download.

## `offset` (type: `integer`):

Database paging offset.

## Actor input object example

```json
{
  "limit": 10000,
  "offset": 0
}
```

# Actor output Schema

## `domains` (type: `string`):

No description

## `meta` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("devbox123/domains-ai-1").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("devbox123/domains-ai-1").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call devbox123/domains-ai-1 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=devbox123/domains-ai-1",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/weJEh9tdFrgxzodUg/builds/sX8QkbBXKxdMuzCqQ/openapi.json
