v1

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

Get Economic Events Calendar

Fetches a calendar of upcoming or past economic events (e.g., CPI release, FOMC meeting) for a specified date range.

get/economics/calendar

Query parameters

fromstring date

The starting date for the calendar (YYYY-MM-DD). Defaults to the provider's default start date.

tostring date

The ending date for the calendar (YYYY-MM-DD). Defaults to the provider's default end date.

Response

Successful response with an array of economic calendar events.

datestring date-time
eventstring
countrystring
actualnumber nullable
previousnumber nullable
changenumber nullable
change-percentagenumber nullable
estimatenumber nullable
impactstring

Estimated market impact level (e.g., Low, Medium, High).

Example response

[
  {
    "date": "2024-08-01T12:30:00.000Z",
    "event": "Initial Jobless Claims",
    "country": "US",
    "actual": 235000,
    "previous": 230000,
    "change": 5000,
    "change-percentage": 2.17,
    "estimate": 232000,
    "impact": "Medium"
  }
]