Hunter · Schema

CompanyEnrichment

Contact DiscoveryEmailEmail VerificationLead GenerationProspectingSales Intelligence

Properties

Name Type Description
id string Unique identifier for the company record.
name stringnull Company name.
legalName stringnull Legal name of the company.
domain string Company domain name.
domainAliases array Alternate domain names.
site object
category object Industry classification.
tags array Tags associated with the company.
description stringnull Company description.
foundedYear integernull Year the company was founded.
location stringnull Location description.
timeZone stringnull Time zone name.
utcOffset numbernull UTC offset in hours.
geo object
logo stringnull Company logo URL.
facebook object
linkedin object
twitter object
crunchbase object
emailProvider stringnull Email service provider.
type stringnull Company type.
company_type stringnull Entity type classification.
ticker stringnull Stock ticker symbol.
identifiers object
phone stringnull Primary phone number.
metrics object
indexedAt stringnull Date when the record was last indexed.
tech array Technologies used by the company.
techCategories array Categories of technologies used.
parent object
ultimateParent object
View JSON Schema on GitHub

JSON Schema

hunter-companyenrichment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyEnrichment",
  "title": "CompanyEnrichment",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the company record.",
      "example": "abc123"
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company name.",
      "example": "Example Title"
    },
    "legalName": {
      "type": [
        "string",
        "null"
      ],
      "description": "Legal name of the company.",
      "example": "example_value"
    },
    "domain": {
      "type": "string",
      "description": "Company domain name.",
      "example": "example_value"
    },
    "domainAliases": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Alternate domain names.",
      "example": []
    },
    "site": {
      "type": "object",
      "properties": {
        "phoneNumbers": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "emailAddresses": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "example": "example_value"
    },
    "category": {
      "type": "object",
      "description": "Industry classification.",
      "properties": {
        "sector": {
          "type": [
            "string",
            "null"
          ]
        },
        "industryGroup": {
          "type": [
            "string",
            "null"
          ]
        },
        "industry": {
          "type": [
            "string",
            "null"
          ]
        },
        "subIndustry": {
          "type": [
            "string",
            "null"
          ]
        },
        "gicsCode": {
          "type": [
            "string",
            "null"
          ]
        },
        "sicCode": {
          "type": [
            "string",
            "null"
          ]
        },
        "sic4Codes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "naicsCode": {
          "type": [
            "string",
            "null"
          ]
        },
        "naics6Codes": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "naics6Codes2022": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "example": "example_value"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags associated with the company.",
      "example": []
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company description.",
      "example": "A sample description."
    },
    "foundedYear": {
      "type": [
        "integer",
        "null"
      ],
      "description": "Year the company was founded.",
      "example": "example_value"
    },
    "location": {
      "type": [
        "string",
        "null"
      ],
      "description": "Location description.",
      "example": "example_value"
    },
    "timeZone": {
      "type": [
        "string",
        "null"
      ],
      "description": "Time zone name.",
      "example": "example_value"
    },
    "utcOffset": {
      "type": [
        "number",
        "null"
      ],
      "description": "UTC offset in hours.",
      "example": "example_value"
    },
    "geo": {
      "$ref": "#/components/schemas/CompanyGeoLocation"
    },
    "logo": {
      "type": [
        "string",
        "null"
      ],
      "format": "uri",
      "description": "Company logo URL.",
      "example": "https://www.example.com"
    },
    "facebook": {
      "type": "object",
      "properties": {
        "handle": {
          "type": [
            "string",
            "null"
          ]
        },
        "likes": {
          "type": [
            "integer",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "linkedin": {
      "type": "object",
      "properties": {
        "handle": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "twitter": {
      "type": "object",
      "properties": {
        "handle": {
          "type": [
            "string",
            "null"
          ]
        },
        "id": {
          "type": [
            "integer",
            "null"
          ]
        },
        "bio": {
          "type": [
            "string",
            "null"
          ]
        },
        "followers": {
          "type": [
            "integer",
            "null"
          ]
        },
        "following": {
          "type": [
            "integer",
            "null"
          ]
        },
        "location": {
          "type": [
            "string",
            "null"
          ]
        },
        "site": {
          "type": [
            "string",
            "null"
          ]
        },
        "avatar": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "crunchbase": {
      "type": "object",
      "properties": {
        "handle": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "emailProvider": {
      "type": [
        "string",
        "null"
      ],
      "description": "Email service provider.",
      "example": "user@example.com"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Company type.",
      "example": "example_value"
    },
    "company_type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Entity type classification.",
      "example": "example_value"
    },
    "ticker": {
      "type": [
        "string",
        "null"
      ],
      "description": "Stock ticker symbol.",
      "example": "example_value"
    },
    "identifiers": {
      "type": "object",
      "properties": {
        "usEIN": {
          "type": [
            "string",
            "null"
          ],
          "description": "US Employer Identification Number."
        }
      },
      "example": "example_value"
    },
    "phone": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary phone number.",
      "example": "example_value"
    },
    "metrics": {
      "type": "object",
      "properties": {
        "alexaUsRank": {
          "type": [
            "integer",
            "null"
          ]
        },
        "alexaGlobalRank": {
          "type": [
            "integer",
            "null"
          ]
        },
        "trafficRank": {
          "type": [
            "string",
            "null"
          ]
        },
        "employees": {
          "type": [
            "string",
            "null"
          ],
          "description": "Estimated employee count or range."
        },
        "marketCap": {
          "type": [
            "number",
            "null"
          ]
        },
        "raised": {
          "type": [
            "number",
            "null"
          ],
          "description": "Total funding raised."
        },
        "annualRevenue": {
          "type": [
            "number",
            "null"
          ]
        },
        "estimatedAnnualRevenue": {
          "type": [
            "number",
            "null"
          ]
        },
        "fiscalYearEnd": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "indexedAt": {
      "type": [
        "string",
        "null"
      ],
      "format": "date",
      "description": "Date when the record was last indexed.",
      "example": "2026-01-15"
    },
    "tech": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Technologies used by the company.",
      "example": []
    },
    "techCategories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Categories of technologies used.",
      "example": []
    },
    "parent": {
      "type": "object",
      "properties": {
        "domain": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    },
    "ultimateParent": {
      "type": "object",
      "properties": {
        "domain": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "example": "example_value"
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/hunter-companyenrichment"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.