docs / enrich-company
Company Intelligence API
Company Intelligence API
base /enrich-company/v13 endpoints
post
/enrich-company/v1/company_domain6 creditsdomain → entity-resolved company profile (core groups) with per-field provenance
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| domain | required | — | Company website domain to enrich (bare host like stripe.com; a full URL or leading www. is accepted and normalized). |
| include | optional | domain · tech · presence · news · developer · hiring · reputation | Run ONLY these field groups (cost control). Default: all groups of this action. `entity` + `company` are always computed from whatever ran. |
| exclude | optional | domain · tech · presence · news · developer · hiring · reputation | Drop these field groups from this action's default set. |
post
/enrich-company/v1/company_domain_rich14 creditseverything in company_domain + firmographics (LinkedIn/Indeed/Glassdoor), review depth, local/maps match, brand trends, app/package presence, registry funding signals (Wikidata), traffic rank
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| domain | required | — | Company website domain to enrich (bare host like stripe.com; a full URL or leading www. is accepted and normalized). |
| include | optional | domain · tech · presence · news · developer · hiring · reputation · trends · apps · funding · traffic | Run ONLY these field groups (cost control). Default: all groups of this action. `entity` + `company` are always computed from whatever ran. |
| exclude | optional | domain · tech · presence · news · developer · hiring · reputation · trends · apps · funding · traffic | Drop these field groups from this action's default set. |
post
/enrich-company/v1/batch24 creditsenrich up to 10 domains in one call (core groups, cache-first, per-domain ok/error)
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| domains | required | — | Up to 10 domains (array or comma-separated). Each is enriched like company_domain; per-domain ok/error, cache-first. |
| include | optional | domain · tech · presence · news · developer · hiring · reputation | Run ONLY these field groups (cost control). Default: all groups of this action. `entity` + `company` are always computed from whatever ran. |
| exclude | optional | domain · tech · presence · news · developer · hiring · reputation | Drop these field groups from this action's default set. |
Example request · company_domain
curl -X POST https://api.reefapi.com/enrich-company/v1/company_domain \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"domain":"github.com","include":["domain","presence"]}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}