AlphaSense · Schema

Company

A company entity in the AlphaSense reference graph. Companies join into Search filters, Watchlist items, and GenSearch citations.

Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Properties

Name Type Description
id string AlphaSense company identifier.
name string
ticker string
cik string SEC Central Index Key, when applicable.
isin string
sector string
industry string
View JSON Schema on GitHub

JSON Schema

alphasense-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-company-schema.json",
  "title": "Company",
  "description": "A company entity in the AlphaSense reference graph. Companies join into Search filters, Watchlist items, and GenSearch citations.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "AlphaSense company identifier." },
    "name": { "type": "string" },
    "ticker": { "type": "string" },
    "cik": { "type": "string", "description": "SEC Central Index Key, when applicable." },
    "isin": { "type": "string" },
    "sector": { "type": "string" },
    "industry": { "type": "string" }
  },
  "required": ["id", "name"]
}