Company
Base information about a Company.
This type includes identifiers of a company from various "company universes", as well as some additional fields that help in distinguishing the company.
Example use cases: in watchlists, or documents associated to certain companies.
type Company {
id: String!
name: String!
primaryTickerCode: String
country: Country
type: CompanyType
sector: IndustrySector
industry: IndustryBranch
subIndustry: SubIndustry
isin: String
crunchbaseId: String
cik: String
quarterlyTrendingTopics(
quarter: Quarter
year: Int
): [CompanyTrendingTopics!]
trendingTopics(
paginationFilter: TopicsPaginationFilter
dataFilter: CompanyTopicsFilter
): CompanyTopicsData
primary: Boolean
aiSummaryModules: [AISummaryModule]
hasSummaries: Boolean
}
Fields
Company.id ● String! non-null scalar graph-ql-types
Internal AlphaSense ID @exposed
Company.name ● String! non-null scalar graph-ql-types
Full company name @exposed
Company.primaryTickerCode ● String scalar graph-ql-types
Example: GOOG or AAPL. It's null for private companies. @exposed
Company.country ● Country object graph-ql-types
Country of the Company: Eg: US - United States @exposed
Company.type ● CompanyType enum graph-ql-types
Shows if it's a public or private company @exposed
Company.sector ● IndustrySector object graph-ql-types
Sector in GICS Taxonomy (Does not include branches/industries). Eg: 10 - Energy
Note that the "Company.sector.branches" lists all IndustryBranches for the IndustrySector. If you instead want to find out the specific IndustryBranch for this Company, use the "Company.industry" field. @exposed
Company.industry ● IndustryBranch object graph-ql-types
Industry in GICS Taxonomy (Does not include sub-industries). Eg: 101010 - Energy Equipment & Services
Note that the "Company.industry.subIndustries" lists all SubIndustries for the IndustryBranch. If you instead want to find out the SubIndustry for this Company, use the "Company.subIndustry" field. @exposed
Company.subIndustry ● SubIndustry object graph-ql-types
Sub-industry in GICS Taxonomy. Eg: 10101010 - Oil & Gas Drilling @exposed
Company.isin ● String scalar graph-ql-types
ISIN code for the company if exists @exposed
Company.crunchbaseId ● String scalar graph-ql-types
Identifier from the Crunchbase platform.
The 'id' field (internal AlphaSense ID) of some of the companies is identical to their Crunchbase ID.
The Crunchbase ID also corresponds to the 'uuid' field in the CompanyProfile type. @exposed
Company.cik ● String scalar graph-ql-types
Central Index Key (CIK) number.
This is a number given to an individual, company, or foreign government by the United States Securities and Exchange Commission (SEC). @exposed
Company.quarterlyTrendingTopics ● [CompanyTrendingTopics!] list object graph-ql-types
Get company trending topics @exposed
Company.quarterlyTrendingTopics.quarter ● Quarter enum graph-ql-types
Company.quarterlyTrendingTopics.year ● Int scalar graph-ql-types
Company.trendingTopics ● CompanyTopicsData object graph-ql-types
Trending topics for a particular company @exposed
Company.trendingTopics.paginationFilter ● TopicsPaginationFilter input graph-ql-types
pagination filter includes parameter related to pageSize, offset and sorting
Company.trendingTopics.dataFilter ● CompanyTopicsFilter input graph-ql-types
data filter includes topic name and time frame, if topic name is passed returns data for that single topic
Company.primary ● Boolean scalar graph-ql-types
@exposed
Company.aiSummaryModules ● [AISummaryModule] list object graph-ql-types
AISummaryModules containing generated AI summaries for the company. @exposed
Company.hasSummaries ● Boolean scalar graph-ql-types
Indicates whether the company has summaries available or not. Returns true if there are summaries available for the company, false otherwise. @exposed
Returned By
companies query ● Document__companies query ● suggestedTickers query
Member Of
AISummaryReference object ● Document object ● ExpertEmploymentRecord object ● Watchlist object