Domain Enricher avatar

Domain Enricher

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Domain Enricher

Domain Enricher

Turn any domain into rich company intelligence: WHOIS registration, DNS records, email provider, 50+ tech stack detections, social media profiles, and website metadata. Free Clearbit and BuiltWith alternative.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

SilentFlow

SilentFlow

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

Turn any domain name into rich company intelligence. WHOIS registration, DNS records, email provider, technology stack, social media profiles, and website metadata. One API call per domain.

How it works

How Domain Enricher works, from domain name to structured company data

โœจ Why teams use this enricher

Paying hundreds per month for Clearbit just to look up a domain? Building spreadsheets by hand from WHOIS lookups? Guessing what tech stack a prospect uses?

  • ๐Ÿ” Everything about a domain in one call. WHOIS registration, DNS records, email provider, 50+ technology detections, social media profiles, and website metadata. No need to query 5 different APIs.
  • ๐Ÿ’ฐ Free Clearbit alternative. Clearbit charges $99-999/month for similar data. This enricher is pay-per-domain with no subscription.
  • โšก 20 domains in under 10 seconds. 3 parallel workers enrich your entire list while you wait.
  • ๐Ÿ“Š 50+ technologies detected. Frameworks (Next.js, Nuxt), CMS (WordPress, Shopify), analytics (GA4, Mixpanel), payments (Stripe, PayPal), CDN (Cloudflare, Vercel), monitoring (Sentry, Datadog), and more.
  • ๐ŸŒ Works with any TLD. .com, .fr, .io, .ai, .co, .app, .dev, and every other TLD.
  • ๐Ÿ›ก๏ธ Always returns data. Even if a website blocks scraping, you still get WHOIS, DNS, and email provider data.

๐ŸŽฏ What you can do with domain data

TeamWhat they build
SalesQualify leads by domain: what tech do they use? How old is the company? What email provider?
Competitive IntelDiscover what tools and technologies your competitors run
Market ResearchAnalyze technology adoption across hundreds of companies in a sector
Lead EnrichmentEnrich your CRM with company metadata from domain names
Due DiligenceVerify domain registration, age, and status before partnerships
RecruitingIdentify a company's tech stack to match candidates with the right skills

๐Ÿ“ฅ Input parameters

ParameterTypeDescription
domainsstring[]Domain names to enrich (e.g., stripe.com, doctolib.fr, mistral.ai)
maxItemsintegerMaximum domains to process (default: 100)

๐Ÿ“Š Output data

{
"domain": "stripe.com",
"enrichmentLevel": "full",
"registration": {
"registrar": "SafeNames Ltd.",
"createdAt": "1995-09-12T04:00:00Z",
"expiresAt": "2027-09-11T04:00:00Z",
"updatedAt": "2025-10-01T01:39:51Z",
"domainAge": 11166,
"status": ["client delete prohibited"],
"nameservers": ["ns-1087.awsdns-07.org"]
},
"dns": {
"ipAddresses": ["185.166.24.2"],
"mxRecords": ["aspmx.l.google.com"],
"emailProvider": "Google Workspace",
"detectedServices": ["Google Workspace", "Atlassian", "Facebook"]
},
"website": {
"title": "Stripe | Financial Infrastructure to Grow Your Revenue",
"description": "...",
"language": "en",
"ogImage": "https://...",
"socialLinks": {
"facebook": "https://www.facebook.com/StripeHQ",
"twitter": "https://twitter.com/stripe",
"linkedin": "https://www.linkedin.com/company/stripe",
"instagram": "https://www.instagram.com/stripehq",
"youtube": "https://youtube.com/@stripe",
"github": "https://github.com/stripe"
}
},
"techStack": {
"cdn": "Cloudflare",
"server": "nginx",
"framework": "Next.js",
"analytics": ["Google Analytics"],
"payments": ["Stripe"],
"monitoring": ["Sentry"],
"allTechnologies": ["Next.js", "Stripe", "Nginx", "Google Analytics", "Sentry"]
},
"scrapedAt": "2026-04-08T14:30:00Z"
}

๐Ÿ—‚๏ธ Data fields

CategoryFields
Registrationregistrar, createdAt, expiresAt, updatedAt, domainAge, status, nameservers
DNSipAddresses, mxRecords, emailProvider, detectedServices
Websitetitle, description, language, ogImage, favicon
Socialfacebook, twitter, linkedin, instagram, youtube, tiktok, github
Tech Stackframework, cdn, server, analytics, payments, monitoring, allTechnologies

50+ technologies detected

CategoryTechnologies
FrameworksNext.js, Nuxt.js, Angular, Gatsby, Remix, Astro, SvelteKit
CMSWordPress, Shopify, Wix, Webflow, Squarespace, Ghost, Drupal, Contentful, Prismic, Sanity, Strapi
AnalyticsGoogle Analytics, GTM, Hotjar, Amplitude, Mixpanel, Segment, PostHog, Plausible, Microsoft Clarity
MarketingHubSpot, Intercom, Crisp, Drift, Zendesk, Mailchimp, Klaviyo
PaymentsStripe, PayPal, Adyen, Paddle, Chargebee
CDNCloudflare, CloudFront, Fastly, Vercel, Netlify
MonitoringSentry, Datadog, New Relic, LogRocket

๐Ÿš€ Examples

Enrich a single domain

{
"domains": ["stripe.com"]
}

Enrich a batch of competitors

{
"domains": [
"doctolib.fr",
"backmarket.fr",
"alan.com",
"qonto.com",
"mistral.ai"
]
}

๐Ÿ’ป Integrations

Python

from apify_client import ApifyClient
client = ApifyClient("<YOUR_API_TOKEN>")
run = client.actor("silentflow/domain-enricher").call(run_input={
"domains": ["stripe.com", "doctolib.fr", "mistral.ai"],
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{item['domain']}: {item['techStack'].get('framework', 'N/A')}")
print(f" Email: {item['dns']['emailProvider']}")
print(f" Age: {item['registration']['domainAge']} days")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });
const run = await client.actor('silentflow/domain-enricher').call({
domains: ['stripe.com', 'doctolib.fr', 'mistral.ai'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item => {
console.log(`${item.domain}: ${item.techStack?.framework || 'N/A'}`);
});

๐Ÿ“ˆ Performance

MetricValue
Speed~20 domains in 7 seconds
Enrichment rate~100% for DNS/WHOIS, ~90%+ for full HTML
Supported TLDsAll major TLDs
Graceful degradationReturns enrichmentLevel: "partial" if website blocks scraping

๐Ÿ’ก Tips for best results

  1. Use clean domain names. stripe.com, not https://www.stripe.com/pricing. Just the domain.
  2. Batch your domains. More efficient than running one at a time. 3 parallel workers handle them concurrently.
  3. Check enrichmentLevel. "full" means all data collected. "partial" means the website blocked scraping but DNS/WHOIS data is still available.
  4. Domain age is a strong signal. domainAge in days helps distinguish new startups from established companies.

โ“ FAQ

Q: What data sources does this use? A: RDAP (modern WHOIS), Google DNS-over-HTTPS for DNS records, and direct website scraping for HTML metadata and tech detection. All public sources.

Q: Why is enrichmentLevel "partial" for some domains? A: Some websites block automated access. You still get WHOIS, DNS, email provider, and SaaS detection. Only HTML-based data (title, social links, some tech stack) is missing.

Q: How is this different from Clearbit? A: Clearbit charges $99-999/month for similar data. This enricher is pay-per-domain with no subscription.

Q: Does it work with any TLD? A: Yes. .com, .fr, .io, .ai, .co, .app, .dev, and all other TLDs are supported.

๐Ÿ“ฌ Support

Need something this enricher doesn't do yet? We ship features fast.

  • ๐Ÿ’ก Feature requests go straight to our backlog
  • โš™๏ธ Enterprise needs? We do custom integrations and high-volume setups

Response time: usually under 24 hours.

Check out our other scrapers: SilentFlow on Apify