v1

latestOpenAPI 3.1.0raw.githubusercontent.com2025-04-25361217.6 KB
Earnings

Get Earnings Calendar

Fetches the earnings calendar for a specified date range or the next few days.

get/earnings/calendar

Query parameters

fromstring date

The starting date for the calendar (YYYY-MM-DD). Defaults to today if 'to' is provided, otherwise fetches the next few days.

tostring date

The ending date for the calendar (YYYY-MM-DD). Defaults to 90 days from 'from' if provided, otherwise fetches the next few days.

Response

Successful response with an array of earnings calendar events.

datestring date
symbolstring
epsnumber nullable
eps-estimatednumber nullable
timestring

Time of the earnings announcement (e.g., "amc" - after market close, "bmo" - before market open).

revenuenumber nullable
revenue-estimatednumber nullable
fiscal-date-endingstring date
updated-from-datestring date

Example response

[
  {
    "date": "2024-07-30",
    "symbol": "AMD",
    "eps": 0.66,
    "eps-estimated": 0.67,
    "time": "amc",
    "revenue": 5700000000,
    "revenue-estimated": 5710000000,
    "fiscal-date-ending": "2024-06-30",
    "updated-from-date": "2024-07-29"
  }
]