Skip to main content
GET
/
v2
/
companies
/
{companyId}
/
fields
Get field values on a single Company
curl --request GET \
  --url https://api.affinity.co/v2/companies/{companyId}/fields \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "affinity-data-description",
      "name": "Description",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "text",
        "data": "Horizon Technologies is a leading technology company specializing in enterprise software and cloud infrastructure."
      }
    },
    {
      "id": "affinity-data-industry",
      "name": "Industry",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "filterable-text-multi",
        "data": [
          "Healthcare",
          "Fintech",
          "SaaS"
        ]
      }
    },
    {
      "id": "affinity-data-investment-stage",
      "name": "Investment Stage",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "filterable-text",
        "data": "Public Markets"
      }
    },
    {
      "id": "affinity-data-investors",
      "name": "Investors",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "filterable-text-multi",
        "data": [
          "Alex Rivera",
          "Taylor Wong"
        ]
      }
    },
    {
      "id": "affinity-data-last-funding-amount",
      "name": "Last Funding Amount (USD)",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "number",
        "data": 100000000
      }
    },
    {
      "id": "affinity-data-last-funding-date",
      "name": "Last Funding Date",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "datetime",
        "data": "2023-01-01T00:00:00Z"
      }
    },
    {
      "id": "affinity-data-linkedin-url",
      "name": "LinkedIn URL",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "text",
        "data": "https://linkedin.com/company/horizontech"
      }
    },
    {
      "id": "affinity-data-location",
      "name": "Location",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "location",
        "data": {
          "streetAddress": null,
          "city": "Fairfield",
          "state": "New Jersey",
          "country": "United States",
          "continent": null
        }
      }
    },
    {
      "id": "affinity-data-number-of-employees",
      "name": "Number of Employees",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "number",
        "data": 3990
      }
    },
    {
      "id": "affinity-data-total-funding-amount",
      "name": "Total Funding Amount (USD)",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "number",
        "data": 90000000
      }
    },
    {
      "id": "affinity-data-year-founded",
      "name": "Year Founded",
      "type": "enriched",
      "enrichmentSource": "affinity-data",
      "value": {
        "type": "number",
        "data": 1952
      }
    }
  ],
  "pagination": {
    "prevUrl": "https://api.affinity.co/v2/companies/1/fields?types=enriched&cursor=ICAgICAgYmVmb3JlOjo6Nw",
    "nextUrl": "https://api.affinity.co/v2/companies/1/fields?types=enriched&cursor=ICAgICAgIGFmdGVyOjo6NA"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.affinity.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

companyId
integer<int64>
required

Company ID

Required range: 1 <= x <= 9007199254740991

Query Parameters

ids
string[]

Field IDs for which to return field data

Example:
["field-1"]
types
enum<string>[]

Field Types for which to return field data

Available options:
enriched,
global,
relationship-intelligence
cursor
string

Cursor for the next or previous page

Example:

"ICAgICAgYmVmb3JlOjo6Nw"

limit
integer<int32>
default:20

Number of items to include in the page

Required range: 1 <= x <= 100
Example:

20

Response

OK

FieldPaged model

data
Field · object[]
required

A page of Field results

Maximum array length: 100
pagination
Pagination · object
required