I Built a Free Clearbit Alternative — Company Enrichment API for Developers

Clearbit killed their free tier in April 2025. Now it’s “Breeze Intelligence” — $75/month minimum, HubSpot subscription required, credits expire monthly.

I needed company enrichment for a side project and didn’t want to pay $0.10 per lookup. So I buil…


This content originally appeared on DEV Community and was authored by Artur Vakula

Clearbit killed their free tier in April 2025. Now it's "Breeze Intelligence" — $75/month minimum, HubSpot subscription required, credits expire monthly.

I needed company enrichment for a side project and didn't want to pay $0.10 per lookup. So I built my own.

What it does

Give it a domain → get back a full company profile. One API call, 7 data sources:

  • DNS/MX records → email provider (Google Workspace, Microsoft 365, etc.)
  • SSL certificate → organization name, issuer
  • WHOIS → registrar, creation date, country
  • HTML parsing → description, social links, emails, phones
  • Tech stack detection → 30+ technologies (React, Shopify, Stripe, etc.)
  • Schema.org → structured company data
  • Reverse DNS → hosting provider (AWS, GCP, Cloudflare, etc.)

Example: enrich apple.com

const response = await fetch('https://web-intelligence-api.p.rapidapi.com/enrich', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-RapidAPI-Key': 'YOUR_KEY',
    'X-RapidAPI-Host': 'web-intelligence-api.p.rapidapi.com'
  },
  body: JSON.stringify({ domain: 'apple.com' })
});

Returns:

  • Company: Apple Inc. (from SSL cert)
  • Email: Self-hosted (custom MX servers)
  • Phone: 1-800-692-7753
  • SSL issuer: Apple Inc. (self-signed)
  • WHOIS: Created 1987, US, registrar COM LAUDE
  • SPF: ✅ DMARC: ✅
  • Social: YouTube, LinkedIn, Facebook, Twitter (from schema.org)

Pricing vs. Clearbit

Company Intelligence API Clearbit / Breeze
Per enrichment $0.005 $0.09-$0.10
Free tier 50/day None (removed 2025)
Requires HubSpot No Yes
Minimum cost $0 $75/mo + HubSpot

Try it

Free tier: 50 calls/day, no credit card.

Try on RapidAPI →

It also has /validate-email (DNS + disposable check) and /extract (raw URL scraping).

Built this as a solo dev. Feedback welcome.


This content originally appeared on DEV Community and was authored by Artur Vakula


Print Share Comment Cite Upload Translate Updates
APA

Artur Vakula | Sciencx (2026-03-20T20:35:14+00:00) I Built a Free Clearbit Alternative — Company Enrichment API for Developers. Retrieved from https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/

MLA
" » I Built a Free Clearbit Alternative — Company Enrichment API for Developers." Artur Vakula | Sciencx - Friday March 20, 2026, https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/
HARVARD
Artur Vakula | Sciencx Friday March 20, 2026 » I Built a Free Clearbit Alternative — Company Enrichment API for Developers., viewed ,<https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/>
VANCOUVER
Artur Vakula | Sciencx - » I Built a Free Clearbit Alternative — Company Enrichment API for Developers. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/
CHICAGO
" » I Built a Free Clearbit Alternative — Company Enrichment API for Developers." Artur Vakula | Sciencx - Accessed . https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/
IEEE
" » I Built a Free Clearbit Alternative — Company Enrichment API for Developers." Artur Vakula | Sciencx [Online]. Available: https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/. [Accessed: ]
rf:citation
» I Built a Free Clearbit Alternative — Company Enrichment API for Developers | Artur Vakula | Sciencx | https://www.scien.cx/2026/03/20/i-built-a-free-clearbit-alternative-company-enrichment-api-for-developers/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.