Domain Email Finder
Extract emails, phone numbers, and lead enrichment data from any website domain for outreach campaigns
$0.05 per contact found
POST /api/v1/scrape/website-finderParameters
| Name | Type | Required | Description |
|---|---|---|---|
startUrls | object[] | Required | Array of domain URLs to scrapeExample: [{"url": "https://tesla.com"}, {"url": "https://stripe.com"}] |
departments | string[] | Optional | Filter contacts by department. Available: information_technology, c_suite, sales, marketing, finance, human_resources, legal, operations, product, engineering_technical, design, education, medical_health, consultingExample: ["information_technology", "sales", "marketing"] |
Examples
Extract contacts from single domain
curl -X POST https://app.scrapercity.com/api/v1/scrape/website-finder \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"startUrls": [
{"url": "https://tesla.com"}
]
}'Filter by departments
curl -X POST https://app.scrapercity.com/api/v1/scrape/website-finder \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"startUrls": [
{"url": "https://stripe.com"}
],
"departments": ["information_technology", "engineering_technical"]
}'Bulk domain contact extraction
curl -X POST https://app.scrapercity.com/api/v1/scrape/website-finder \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"startUrls": [
{"url": "https://tesla.com"},
{"url": "https://stripe.com"},
{"url": "https://openai.com"},
{"url": "https://shopify.com"},
{"url": "https://airbnb.com"}
]
}'Check extraction status
curl -X GET https://app.scrapercity.com/api/v1/scrape/status/{runId} \
-H "Authorization: Bearer YOUR_API_KEY"Use Cases
- •Build targeted B2B prospect lists from company domains
- •Enrich CRM data with verified contact information
- •Scale cold outreach with decision-maker contacts
- •Generate lead lists for sales and marketing campaigns
- •Find key personnel at target companies for partnerships
Best Practices
- •Searches up to 5 pages per domain to find all contact information
- •Returns enriched lead data including names, titles, and company info
- •CSV includes emails, phone numbers, social profiles, and lead details
- •Best results with company root domains (not subpages)
- •Can process hundreds of domains in a single request
- •Filter by department to target specific roles (optional)
- •Results include lead enrichment data when available
- •Can be cancelled while running
Every scrape returns a runId. Poll GET /api/v1/scrape/status/{runId} until it completes, then download via GET /api/downloads/{runId}?format=csv.
Authenticate every request with Authorization: Bearer YOUR_API_KEY. See the full API reference for authentication, rate limits and error codes.