Skip to content
Last updated

The HG Insights API provides three main categories of company data. This guide explains what each field group contains and how to interpret the data.

Field Groups Overview

The API organizes data into three field groups that you can request independently:

  • Firmographics - Company profile and business information
  • Spend - IT spending and budget data
  • Technographics - Technology installations and usage

Each field group contains specific data points that give you comprehensive insights into a company.


Firmographics

Firmographics provide fundamental company information including identity, location, size, and industry classification.

Key Fields

FieldTypeDescriptionExample
namestringOfficial company name"Walmart Inc."
urlstringPrimary company domain"walmart.com"
country_codestringISO country code"US"
country_namestringFull country name"United States"
statestringState or region"Arkansas"
citystringCity location"Bentonville"
addressstringPhysical address"702 SW 8th St"
postal_codestringZIP or postal code"72716"
employees_totalintegerTotal employee count2100000
revenue_totalintegerAnnual revenue in USD680985000000
industrystringPrimary industry"Retail"
sic_codestringStandard Industrial Classification"5331"
naics_codestringNorth American Industry Classification"452311"

Industry Classification

Companies are classified using multiple taxonomies:

  • SIC codes: Standard Industrial Classification (legacy system)
  • NAICS codes: North American Industry Classification System (modern standard)
  • Industry: Human-readable industry category

Spend

Spend data reveals IT budget allocation across technology categories, helping you understand where companies invest in technology.

Key Fields

FieldTypeDescription
allarrayList of all spend records
all_countintegerTotal number of spend categories
category_namestringTechnology category name
category_idstringHG category identifier
spend_amountintegerEstimated annual spend in USD

Example Spend Record

{
  "category_name": "Cloud Infrastructure",
  "category_id": "ABC123",
  "spend_amount": 5000000
}

To explore available spend categories, visit HG Discovery Categories.


Technographics

Technographics reveal the specific technologies a company has installed, providing detailed insights into their tech stack.

Key Fields

FieldTypeDescription
installsarrayList of technology installations
installs_countintegerTotal number of products installed
product_namestringName of the technology product
product_idintegerHG product identifier
vendor_namestringName of the vendor/manufacturer
vendor_idintegerHG vendor identifier
category_namestringTechnology category
category_idstringHG category identifier
install_datestringWhen technology was first detected
usage_intensitystringLevel of usage (e.g., "High", "Medium", "Low")

Example Install Record

{
  "product_name": "Salesforce Sales Cloud",
  "product_id": 814,
  "vendor_name": "Salesforce",
  "vendor_id": 316,
  "category_name": "CRM",
  "install_date": "2020-01-15",
  "usage_intensity": "High"
}

Understanding Install Data

  • Product vs Vendor: Products are specific tools; vendors are the companies that make them
  • Install date: When HG first detected the technology in use
  • Usage intensity: Indicates depth of adoption (High = mission-critical, Low = limited use)
  • Categories: Technologies grouped by function (CRM, Cloud, Security, etc.)

To explore products and vendors tracked by HG Insights, visit HG Discovery.

To browse technology categories, visit HG Discovery Categories.