# .ME Domain List (900,000+ Domains) (`devbox123/domains-me-1`) Actor

Free database of 900K+ registered, active .me domains. Updated. Closest zone file alternative - only pay for Apify compute.

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

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

#### .ME Domain List & Dataset (900,000+ Registered Domains)

Get instant access to a massive, continuously updated database of over **900,000+ active and registered .me domains**.

While this is not an official zone file, it is the closest comprehensive alternative available on the market. Instead of paying premium subscription fees for domain intelligence, you get the entire dataset completely **free**—you only pay for the minimal Apify infrastructure costs required to run the Actor and download the data.

#### Why Choose This Dataset?

- **900,000+ Active Domains:** Comprehensive coverage of the .me TLD ecosystem.
- **Monthly Updates:** Fresh data delivered every single month to keep your database current.
- **Virtually a Zone File:** Built using advanced discovery methods to replicate a complete domain list.
- **100% Free Data:** No hidden fees for the data itself. You only cover the standard Apify platform usage costs.

#### Use Cases

- **Cybersecurity & Threat Intelligence:** Monitor phishing risks, brand infringement, and typosquatting within the .me space.
- **Lead Generation:** Discover newly established websites and businesses operating on .me domains.
- **Academic & Statistical Analysis:** Track the growth and usage patterns of the Montenegro country-code TLD (ccTLD).

#### Input Parameters

The Actor accepts two paging options in the **Input** tab:

- **Limit:** Maximum number of domains to download in one run (1–10,000).
- **Offset:** Database offset used to select the requested page of domains.

#### Output Example

The Actor delivers data in clean JSON, CSV, or Excel formats through the Apify Dataset. Each record contains the registered domain name:

```json
[
  {
    "domain": "example.me"
  },
  {
    "domain": "portfolio-design.me"
  },
  {
    "domain": "tech-startup.me"
  }
]
```

#### How It Works & Cost Structure

1. **Data Collection:** Our system aggregates actively responding and registered .me domains through extensive passive DNS, web crawling, and certificate transparency logs.
2. **Apify Compute Fees:** The data is stored and served via Apify. When you run this Actor, Apify charges you directly for the compute units (CUs) and storage used.
3. **Download:** Export the entire 900k+ list in seconds to integrate with your own tools, databases, or SIEM platforms.

#### Frequently Asked Questions (FAQ)

#### 1. Is this an official registry zone file?

No, this is not the official central registry zone file. However, it is the closest comprehensive alternative available. We use advanced internet-wide scanning, passive DNS data, and certificate logs to discover and verify active, registered .me domains, achieving near-complete coverage.

#### 2. Is the data really free?

Yes, the dataset itself is 100% free. We do not charge any premium data fees or subscription costs. You only pay Apify directly for the standard platform resources (Compute Units and storage) required to process and download the data.

#### 3. How often is the domain list updated?

The dataset is fully updated every month. When you run the Actor, you will always get access to the latest monthly snapshot containing the most up-to-date registered domains.

#### 4. Can I export the list in CSV or Excel format?

Yes. Because this Actor integrates natively with the Apify Dataset, you can download the entire list of 900,000+ domains in JSON, CSV, XML, Excel, or HTML format with a single click or API call.

#### 5. Are these domains active or parked?

The list contains registered domains. This includes live websites, web applications, custom email domains, and parked domains. If a domain is registered and visible on the global internet, our system aims to capture it.

#### 6. Can I use this data for commercial purposes?

Yes, you can use this dataset for commercial projects, including threat intelligence platforms, SEO tools, market analysis, or lead generation products.

# 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-me-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-me-1").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).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-me-1 --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,devbox123/domains-me-1"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/fd3oHP5PBX5kV2KvN/builds/IaTeSSq10IlrPS271/openapi.json
