
Hunter.io Domain Search
- spiralcrew/hunter-domain-search
- Modified
- Users 11
- Runs 251
- Created by
Adriaan
Hunter.io's Domain Search is a robust tool for discovering all email addresses linked to a specific domain. It offers confidence scores, department filters, and detailed sources, making it an invaluable resource for efficient contact information retrieval.
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.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"api_key": "fill in your API key",
"domain": "stripe.com"
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/spiralcrew~hunter-domain-search/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'