Logo
AXION

Corp. Intelligence Analyst Ratings

GET/profiles/:ticker/recommendation

Returns 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

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Examples:

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

Response 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

Sample code
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
  }
]
GET/profiles/:ticker/calendar

Provides upcoming earnings dates, earnings call dates, and dividend calendar information. Includes consensus estimates for EPS and revenue when available.

Path Parameters

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Examples:

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

Key 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

Sample code
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"
}
GET/profiles/:ticker/info

Provides 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

ParameterTypeRequiredDescription
tickerstringRequiredStock ticker symbol

Examples:

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

Key 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

Sample code
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
}