curl --request POST \
--url https://api.crustdata.com/company/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"domains": [
"hubspot.com"
],
"fields": [
"basic_info",
"headcount",
"funding"
]
}
'{
"results": [
{
"matched_on": "https://www.linkedin.com/company/mintlify",
"match_type": "professional_network_profile_url",
"matches": [
{
"confidence_score": 1,
"company_data": {
"basic_info": {
"name": "Mintlify",
"primary_domain": "mintlify.link",
"all_domains": [
"mintlify.com",
"mintlify.link"
],
"company_type": "Privately Held",
"year_founded": "2022-01-01",
"employee_count_range": "51-200",
"industries": [
"Software Development"
]
},
"revenue": {
"estimated": {
"lower_bound_usd": 2500000,
"upper_bound_usd": 5000000
}
}
}
}
]
}
]
}Get comprehensive company data including firmographics, headcount, funding, web traffic, employee reviews, people (founders, CXOs, decision makers), news, and more. Identify the company by domain, name, LinkedIn URL, or Crustdata company ID. Use the fields parameter to select specific data groups and reduce response size.
curl --request POST \
--url https://api.crustdata.com/company/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"domains": [
"hubspot.com"
],
"fields": [
"basic_info",
"headcount",
"funding"
]
}
'{
"results": [
{
"matched_on": "https://www.linkedin.com/company/mintlify",
"match_type": "professional_network_profile_url",
"matches": [
{
"confidence_score": 1,
"company_data": {
"basic_info": {
"name": "Mintlify",
"primary_domain": "mintlify.link",
"all_domains": [
"mintlify.com",
"mintlify.link"
],
"company_type": "Privately Held",
"year_founded": "2022-01-01",
"employee_count_range": "51-200",
"industries": [
"Software Development"
]
},
"revenue": {
"estimated": {
"lower_bound_usd": 2500000,
"upper_bound_usd": 5000000
}
}
}
}
]
}
]
}API key passed as a Bearer token in the Authorization header.
API version to use. Must match a supported version (e.g., "2025-11-01").
"2025-11-01"
Company identifier and optional field selection for enrichment
Request body for enriching, identifying, or fetching company data. Exactly one identifier must be provided: names, domains, crustdata_company_ids, or professional_network_profile_urls.
Company names to look up
["Serve Robotics"]Company website domains to look up
["hubspot.com"]Crustdata internal company IDs
[628895]LinkedIn company profile URLs
["https://www.linkedin.com/company/mintlify"]Fields to include in the response. Use dot-notation for nested fields. Valid top-level groups for enrich: basic_info, revenue, headcount, funding, hiring, web_traffic, seo, competitors, employee_reviews, people, locations, taxonomy, followers, news, software_reviews, social_profiles, status. Not valid for enrich: roles, skills (search-only fields).
["basic_info", "headcount", "funding"]Whether to use exact matching for domain/name lookup. When null, auto-detects.
true
Enriched company data
Response from the company enrich or fetch endpoint, containing one result per input identifier.
List of enrich results, one per input identifier
Show child attributes
[]Was this page helpful?