What does the Company Enrichment API do?
The Company Enrichment API returns profile attributes such as industry, size signals, and web presence metadata when you provide a domain or company name. Use it to pre-fill CRM records, score inbound leads, or enrich analytics exports without maintaining your own scraping infrastructure.
Use cases
- CRM auto-fill during trial sign-up
- Lead scoring for B2B SaaS
- Market research list building
- Vendor due diligence checks
Code examples
Replace endpoint paths and hosts with the values shown in your RapidAPI subscription dashboard.
cURL
curl -X GET "https://company-enrichment-api.p.rapidapi.com/enrich?domain=example.com" \
-H "X-RapidAPI-Key: YOUR_RAPIDAPI_KEY" \
-H "X-RapidAPI-Host: company-enrichment-api.p.rapidapi.com"Node.js (fetch)
const response = await fetch("https://company-enrichment-api.p.rapidapi.com/enrich?domain=example.com", {
headers: {
"X-RapidAPI-Key": process.env.RAPIDAPI_KEY,
"X-RapidAPI-Host": "company-enrichment-api.p.rapidapi.com"
}
});
const data = await response.json();
console.log(data);Python (requests)
import requests
response = requests.get(
"https://company-enrichment-api.p.rapidapi.com/enrich?domain=example.com",
headers={
"X-RapidAPI-Key": "YOUR_RAPIDAPI_KEY",
"X-RapidAPI-Host": "company-enrichment-api.p.rapidapi.com",
},
)
print(response.json())Response schema
{
"domain": "example.com",
"name": "Example Inc",
"industry": "Software",
"employees_range": "51-200"
}Pricing
Free
Limited enrichments per month
Pro
Higher enrichment limits
Enterprise
Bulk enrichment pipelines
Visit RapidAPI for live pricing, rate limits, and plan comparison.
FAQ
What input works best?
A verified company domain typically returns the richest profile.
How fresh is the data?
Refresh on a schedule appropriate to your use case; verify critical fields manually for compliance workflows.
Can I enrich by company name only?
Yes, though domain-based lookups are usually more precise.
Is GDPR relevant?
Ensure lawful basis when storing enriched business data about EU subjects.
Is there a free tier?
Subscribe on RapidAPI to obtain your API key. Replace YOUR_RAPIDAPI_KEY with your subscription key.