Domain Enricher
Pricing
from $5.00 / 1,000 results
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
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

โจ 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
| Team | What they build |
|---|---|
| Sales | Qualify leads by domain: what tech do they use? How old is the company? What email provider? |
| Competitive Intel | Discover what tools and technologies your competitors run |
| Market Research | Analyze technology adoption across hundreds of companies in a sector |
| Lead Enrichment | Enrich your CRM with company metadata from domain names |
| Due Diligence | Verify domain registration, age, and status before partnerships |
| Recruiting | Identify a company's tech stack to match candidates with the right skills |
๐ฅ Input parameters
| Parameter | Type | Description |
|---|---|---|
domains | string[] | Domain names to enrich (e.g., stripe.com, doctolib.fr, mistral.ai) |
maxItems | integer | Maximum 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
| Category | Fields |
|---|---|
| Registration | registrar, createdAt, expiresAt, updatedAt, domainAge, status, nameservers |
| DNS | ipAddresses, mxRecords, emailProvider, detectedServices |
| Website | title, description, language, ogImage, favicon |
| Social | facebook, twitter, linkedin, instagram, youtube, tiktok, github |
| Tech Stack | framework, cdn, server, analytics, payments, monitoring, allTechnologies |
50+ technologies detected
| Category | Technologies |
|---|---|
| Frameworks | Next.js, Nuxt.js, Angular, Gatsby, Remix, Astro, SvelteKit |
| CMS | WordPress, Shopify, Wix, Webflow, Squarespace, Ghost, Drupal, Contentful, Prismic, Sanity, Strapi |
| Analytics | Google Analytics, GTM, Hotjar, Amplitude, Mixpanel, Segment, PostHog, Plausible, Microsoft Clarity |
| Marketing | HubSpot, Intercom, Crisp, Drift, Zendesk, Mailchimp, Klaviyo |
| Payments | Stripe, PayPal, Adyen, Paddle, Chargebee |
| CDN | Cloudflare, CloudFront, Fastly, Vercel, Netlify |
| Monitoring | Sentry, 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 ApifyClientclient = 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
| Metric | Value |
|---|---|
| Speed | ~20 domains in 7 seconds |
| Enrichment rate | ~100% for DNS/WHOIS, ~90%+ for full HTML |
| Supported TLDs | All major TLDs |
| Graceful degradation | Returns enrichmentLevel: "partial" if website blocks scraping |
๐ก Tips for best results
- Use clean domain names.
stripe.com, nothttps://www.stripe.com/pricing. Just the domain. - Batch your domains. More efficient than running one at a time. 3 parallel workers handle them concurrently.
- Check enrichmentLevel.
"full"means all data collected."partial"means the website blocked scraping but DNS/WHOIS data is still available. - Domain age is a strong signal.
domainAgein 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