/profiles/:ticker/recommendationReturns analyst consensus recommendations over the last four periods (current month and three prior months). Shows the number of analysts rating the stock as Strong Buy, Buy, Hold, Sell, and Strong Sell.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/recommendationhttps://api.axionquant.com/profiles/MSFT/recommendationResponse Fields
period
Time period relative to current month ("0m", "-1m", etc.)
strongBuy, buy, hold, sell, strongSell
Number of analysts with each rating
Recommendation Trends (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4recommendation = client.profiles.recommendation('AAPL')
5print(recommendation)Response
[
{
"period": "0m",
"strongBuy": 5,
"buy": 24,
"hold": 15,
"sell": 1,
"strongSell": 3
},
{
"period": "-1m",
"strongBuy": 5,
"buy": 24,
"hold": 15,
"sell": 1,
"strongSell": 3
},
{
"period": "-2m",
"strongBuy": 5,
"buy": 24,
"hold": 15,
"sell": 1,
"strongSell": 3
},
{
"period": "-3m",
"strongBuy": 5,
"buy": 23,
"hold": 15,
"sell": 1,
"strongSell": 3
}
]/profiles/:ticker/calendarProvides upcoming earnings dates, earnings call dates, and dividend calendar information. Includes consensus estimates for EPS and revenue when available.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/calendarhttps://api.axionquant.com/profiles/MSFT/calendarKey Response Fields
earnings.earningsDate
Array of expected earnings release dates
earnings.earningsCallDate
Array of expected conference call dates
earnings.earningsAverage, earningsLow, earningsHigh
Analyst EPS estimate range and average
earnings.revenueAverage, revenueLow, revenueHigh
Analyst revenue estimate range and average
exDividendDate, dividendDate
Ex-dividend and payment dates
Calendar Events (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4calendar = client.profiles.calendar('AAPL')
5print(calendar)Response
{
"earnings": {
"earningsDate": ["2026-01-29T21:00:00.000Z"],
"earningsCallDate": ["2025-10-30T21:00:00.000Z"],
"isEarningsDateEstimate": true,
"earningsAverage": 2.6647,
"earningsLow": 2.51,
"earningsHigh": 2.76,
"revenueAverage": 138253076640,
"revenueLow": 136679500000,
"revenueHigh": 142741000000
},
"exDividendDate": "2025-11-10T00:00:00.000Z",
"dividendDate": "2025-11-13T00:00:00.000Z"
}/profiles/:ticker/infoProvides a concise company summary including address, sector, industry, business description, and employee count. This is a lighter version of the full asset profile, excluding executive details and governance scores.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| ticker | string | Required | Stock ticker symbol |
Examples:
https://api.axionquant.com/profiles/AAPL/infohttps://api.axionquant.com/profiles/MSFT/infoKey Response Fields
address1, city, state, zip, country
Headquarters address
phone, website, irWebsite
Contact information
sector, industry
GICS sector and industry
longBusinessSummary
Overview of business operations
fullTimeEmployees
Total workforce size
Company Info (Apple)
Request
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4info = client.profiles.info('AAPL')
5print(info)Response
{
"address1": "One Apple Park Way",
"city": "Cupertino",
"state": "CA",
"zip": "95014",
"country": "United States",
"phone": "(408) 996-1010",
"website": "https://www.apple.com",
"industry": "Consumer Electronics",
"sector": "Technology",
"longBusinessSummary": "Apple Inc. designs, manufactures, and markets smartphones, personal computers, tablets, wearables, and accessories worldwide...",
"fullTimeEmployees": 166000
}