Logo
AXION

Corp. Intelligence

Corporate Intelligence

A company in one place: profiles, snapshot metrics, KPIs, analyst ratings, key dates and operating details for screening and entity enrichment.

Profile API

The Profile API provides comprehensive company fundamentals, market statistics, analyst recommendations, and corporate details. These endpoints deliver key financial metrics, valuation data, earnings calendars, and executive information for publicly traded companies. All endpoints require a valid ticker symbol.

GET/profiles/:ticker

Returns detailed company information including business summary, contact details, industry classification, executive leadership, and governance risk ratings. This endpoint combines the core asset profile with the current executive team.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol (e.g., "AAPL", "MSFT", "NVDA")

Examples:

https://api.axionquant.com/profiles/AAPL
https://api.axionquant.com/profiles/MSFT

Key Response Fields

address1, city, state, zip, country

Corporate headquarters location

website, irWebsite

Company and investor relations URLs

sector, industry

Industry classification

longBusinessSummary

Detailed description of the company's operations

fullTimeEmployees

Number of employees

companyOfficers

List of executives with name, age, title, and totalPay

auditRisk, boardRisk, compensationRisk, shareHolderRightsRisk, overallRisk

Governance risk scores (lower is better)

|

Company Profile (Apple)

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4profile = client.profiles.profile('AAPL')
5print(profile)

Response (abbreviated)

{
  "address1": "One Apple Park Way",
  "city": "Cupertino",
  "state": "CA",
  "zip": "95014",
  "country": "United States",
  "website": "https://www.apple.com",
  "industry": "Consumer Electronics",
  "sector": "Technology",
  "longBusinessSummary": "Apple Inc. designs, manufactures, and markets smartphones...",
  "fullTimeEmployees": 166000,
  "companyOfficers": [
    {
      "name": "Mr. Timothy D. Cook",
      "age": 63,
      "title": "CEO & Director",
      "totalPay": 16520856
    }
  ],
  "overallRisk": 1,
  "governanceEpochDate": "2025-12-01T00:00:00.000Z"
  "auditRisk": 7,
  "boardRisk": 1,
  "compensationRisk": 3,
  "shareHolderRightsRisk": 1,
  "compensationAsOfEpochDate": "2024-12-31T00:00:00.000Z",
  "irWebsite": "http://investor.apple.com/",
  "executiveTeam": [],
}