v1

latestOpenAPI 3.1.1Proprietary2026-07-2687313591.4 KB
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

idstring required

The field's unique identifier

namestring required

The field's name

type'enriched' | 'global' | 'list' | 'relationship-intelligence' | 'hidden' required

The field's category. hidden is a redaction state rather than a category: it signals a field on a restricted opportunity the caller cannot manage, whose value is masked.

enrichmentSource'affinity-data' | 'dealroom' | 'eventbrite' | 'mailchimp' | 'null' nullable required

The source of the data in this Field (if it is enriched)

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"
      }
    ]
  }
}