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.
/profiles/:tickerReturns 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
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol (e.g., "AAPL", "MSFT", "NVDA") |
Examples:
https://api.axionquant.com/profiles/AAPLhttps://api.axionquant.com/profiles/MSFTKey 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
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": [],
}/profiles/:ticker/summaryRetrieves current trading statistics, valuation multiples, dividend information, and 52-week price range. Ideal for a quick snapshot of a stock's market performance.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/summaryhttps://api.axionquant.com/profiles/MSFT/summaryKey Response Fields
previousClose, open, dayLow, dayHigh
Daily trading prices
volume, averageVolume
Current and average trading volume
marketCap
Market capitalization
trailingPE, forwardPE
Price-to-earnings ratios (past & forward)
dividendRate, dividendYield, exDividendDate
Dividend information
fiftyTwoWeekLow, fiftyTwoWeekHigh
52-week price range
beta
Volatility measure relative to market
Stock Summary (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4summary = client.profiles.summary('AAPL')
5print(summary)Response
{
"previousClose": 271.84,
"open": 273.605,
"dayLow": 266.96,
"dayHigh": 273.62,
"volume": 51509672,
"averageVolume": 46958041,
"marketCap": 4039405731840,
"trailingPE": 36.49,
"forwardPE": 29.84,
"dividendRate": 1.04,
"dividendYield": 0.0038,
"exDividendDate": "2025-11-10T00:00:00.000Z",
"fiftyTwoWeekLow": 169.21,
"fiftyTwoWeekHigh": 288.62,
"beta": 1.107
}/profiles/:ticker/statisticsProvides fundamental financial metrics including enterprise value, shares outstanding, short interest, insider/institutional ownership, and valuation ratios.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/statisticshttps://api.axionquant.com/profiles/MSFT/statisticsKey Response Fields
enterpriseValue
Market cap + debt - cash
forwardPE, profitMargins
Forward P/E and net profit margin
floatShares, sharesOutstanding
Shares available for trading and total outstanding
sharesShort, shortRatio, shortPercentOfFloat
Short interest metrics
heldPercentInsiders, heldPercentInstitutions
Ownership percentages
bookValue, priceToBook
Book value per share and P/B ratio
lastSplitDate, lastSplitFactor
Most recent stock split
Key Statistics (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4statistics = client.profiles.statistics('AAPL')
5print(statistics)Response
{
"enterpriseValue": 4079655583744,
"forwardPE": 29.84,
"profitMargins": 0.269,
"floatShares": 14750642146,
"sharesOutstanding": 14776353000,
"sharesShort": 129458559,
"shortRatio": 2.64,
"shortPercentOfFloat": 0.0088,
"heldPercentInsiders": 0.01697,
"heldPercentInstitutions": 0.64406,
"beta": 1.107,
"bookValue": 4.991,
"priceToBook": 54.54,
"lastSplitFactor": "4:1",
"lastSplitDate": 1598832000
}