Introduction
The Enrich Company endpoint returns a company’s profile from a domain.
This endpoint costs 2 credits, charged only when a company is found. Add +1 credit when fullProfile: true and a match is found. A not-found response (404) is always free, even with fullProfile: no credits are consumed.
Authorization
apikey
string
required
Authorization: Bearer YOUR_API_KEY header.Request body
domain
string
required
acme.com or https://acme.com).fullProfile
boolean
false. When true and a match is found, returns the full profile (same fields as the corresponding fetch endpoint) for 1 extra credit.Response structure
The company is returned nested under data.company.
Full profile
Set fullProfile to true to return the same company shape as /v2/fetch/companies when a match is found. The primary data.company then includes the full company profile owned by the fetch endpoint rather than the light enrich shape.
{
"domain": "reversecontact.com",
"fullProfile": true
}
The complete full-profile field reference is documented on the Company Profile endpoint. Note that the full shape uses the fetch naming: the company name is returned as companyName instead of name.
If the full profile cannot be assembled for the matched company, the response falls back to the light shape and only the base 2 credits are charged: the extra credit applies only when the full profile is actually delivered. To know which shape you received, check quotas.creditsConsumed (3 for full, 2 for light) or the presence of a full-profile field such as description.
success
boolean
true if the request was processed successfullyerror
null
null on success