Logo
AXION

Calendar

Events & Calendars

Time your models around reality: corporate events including earnings dates and listings, alongside the macroeconomic calendar.

Economic Calendar API

The Economic Data API provides access to datasets and economic calendar events. This data is essential for macroeconomic analysis, forecasting, and understanding market-moving economic indicators across global markets.

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"
}