Unstoppable Domains Scraper avatar
Unstoppable Domains Scraper

Pricing

$22.00/month + usage

Go to Apify Store
Unstoppable Domains Scraper

Unstoppable Domains Scraper

Developed by

Marco Rodrigues

Marco Rodrigues

Maintained by Community

This crawler allows you to scrape domains from Unstoppable Domains, the leading Web3 domain marketplace.

0.0 (0)

Pricing

$22.00/month + usage

0

2

2

Last modified

23 days ago

This Apify actor allows you to scrape domains from Unstoppable Domains, the leading Web3 domain marketplace.

You can scrape domains across multiple criteria:

  • Domain Status πŸ” (All, Available, For Sale, Taken)
  • Price Ranges πŸ’° (Custom USD price filtering)
  • Domain Length πŸ“ (Character length filtering)
  • Extensions 🌐 (crypto, eth, nft, bitcoin, x, ai, brave, xyz, etc.)
  • Categories πŸ† (Premium domain collections like 999 Club)

Features πŸ› οΈ

The Unstoppable Domains Scraper extracts data with 17+ fields organized by category:

Domain Core Information 🎯

  • id: Unique domain identifier
  • domain_label: The main part of the domain name (e.g., "love" from "love.crypto")
  • domain_extension: The domain extension/TLD (e.g., "crypto", "eth", "nft")
  • full_domain: Complete domain name (e.g., "love.crypto")

Pricing & Market Data πŸ’°

  • purchase_price: Original purchase price in USD cents
  • active_listing_price: Current listing price in USD cents
  • lease_to_own_options: Available lease-to-own payment options

Domain Status & Registration πŸ“‹

  • is_registered: Whether the domain is currently registered
  • is_listed_for_sale: Whether the domain is available for purchase
  • purchased_at: Timestamp of original purchase
  • is_profane: Whether the domain contains NSFW/profane content

Market Activity & Popularity πŸ“ˆ

  • watchlists_count: Number of users who have added this domain to watchlists
  • category_ids: Array of category IDs (999 Club, Dictionary words, etc.)

Ownership & Technical Details πŸ”§

  • logical_owner_address: Wallet address of the current owner
  • expires_at: Domain expiration date (if applicable)
  • registry: Registry system (UNS - Unstoppable Name Service)
  • blockchain: Blockchain where the domain is registered (MATIC, etc.)

How to Use πŸ€”

Input Configuration

The scraper supports various filtering options. Here's a basic configuration:

{
"status": "all",
"min_price": 10,
"max_price": 10000,
"min_length": 2,
"max_length": 30,
"endings": ["crypto", "eth", "x", "ai", "brave", "nft", "xyz"],
"category": ["100K Club"],
"nsfw": "false"
}

Required Parameters:

  • status: Domain status filter (required)
    • Options: "all", "available", "listed", "taken"
    • "all": Scrapes all domains regardless of status
    • "available": Only unregistered domains available for purchase
    • "listed": Domains currently for sale by owners
    • "taken": Already registered domains
  • endings: Domain extensions to search for (required)
    • Array of strings like ["crypto", "eth", "nft", "bitcoin", "x"]
  • nsfw: NSFW content inclusion (required)
    • Options: "false", "true"

Optional Filter Parameters:

  • min_price / max_price: Filter by price range in USD
  • min_length / max_length: Filter by domain name character length
  • category: Filter by premium domain categories
    • Options: "999 Club", "10K Club", "100K Club", "Common English Dictionary", "3 Letter English Dictionary", "4 Letter English Dictionary", "5 Letter English Dictionary", "English Dictionary Nouns", "English Dictionary Verbs"

Example Output

Here's a real example of scraped domain data:

{
"id": 30978,
"domain_label": "love",
"domain_extension": "crypto",
"full_domain": "love.crypto",
"purchase_price": 200000,
"purchased_at": "2023-09-08T07:13:01.794Z",
"is_registered": true,
"is_listed_for_sale": true,
"watchlists_count": 1647,
"active_listing_price": 25000000,
"lease_to_own_options": null,
"is_profane": false,
"category_ids": [10, 9, 7, 5],
"logical_owner_address": "0x450330a2c8e8d59f6a4632578fc3024d8ef9e58e",
"expires_at": null,
"registry": "UNS",
"blockchain": "MATIC"
}

Use Cases πŸ’‘

  • Identify valuable domains
  • Monitor domain price trends
  • Track domain popularity
  • Discover undervalued domains
  • Track your domain investments
  • Monitor domains for sale

Limitations ⚠️

  • The scraper processes domains through pagination and scrolling. Results may vary based on network conditions.