Companies
Get a single field value on a Company
| ⚠️ This endpoint is currently in BETA |
|---|
Retrieve a single field on a company. Returns basic information and the field value.
get/v2/companies/{companyId}/fields/{fieldId}
Path parameters
companyIdinteger required
Company ID
fieldIdstring required
Example:affinity-data-location
Field ID
Response
OK
Example response
{
"id": "affinity-data-location",
"name": "Location",
"type": "enriched",
"enrichmentSource": "affinity-data",
"value": {
"type": "company-multi",
"data": [
{
"id": 1,
"name": "Horizon Technologies",
"domain": "horizontech.com"
},
{
"id": 2,
"name": "Crestwood Capital",
"domain": "crestwoodcap.com"
}
]
}
}