Naked Domains Analyzer

  • jancurn/analyze-domains
  • Modified
  • Users 259
  • Runs 77.1k
  • Created by Author's avatarJan Čurn

Crawls and downloads web pages running on a list of provided naked domains e.g. "example.com". The actor stores HTML snapshot, screenshot, text body, and HTTP response headers of all the pages. It also extracts email addresses, phones, social handles for Facebook, Twitter, LinkedIn, and Instagram.

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

from apify_client import ApifyClient

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

# Prepare the Actor input
run_input = {
    "domains": """example.com
iana.org
apify.com""",
    "maxRequestRetries": 2,
    "crawlLinkCount": 5,
}

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

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)