Unstoppable Domains Scraper avatar

Unstoppable Domains Scraper

Deprecated

Pricing

Pay per usage

Go to Apify Store
Unstoppable Domains Scraper

Unstoppable Domains Scraper

Deprecated

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

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Marco Rodrigues

Marco Rodrigues

Maintained by Community

Actor stats

0

Bookmarked

5

Total users

0

Monthly active users

a month ago

Last modified

Share

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.