Unusual Whales UnusualWhales API

Economic calendar

GET https://api.unusualwhales.com/api/market/economic-calendar

Request

Security: Bearer Auth Authorization: Bearer <token>

Responses

200 500

Response Body 200 OK

event Economic Event

The event/reason. Can be a fed speaker or an economic report/indicator

Example: PCE index
forecast Economic Forecast

The forecast if the event is an economic report/indicator

Example: 69.4
prev Economic Previous

The previous value of the preceding period if the event is an economic report/indicator

Example: 69.4
reported_period Economic Reported Period

The period for that the economic report/indicator is being reported.

Example: December
time Economic Time

The time at which the event will start as UTC timestamp.

Example: 2023-12-22T13:30:00Z
type Economic Type

The type of the event

Example: fomc
Try It GET

Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/economic-calendar" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "event": "Consumer sentiment (final)",
      "forecast": "69.4",
      "prev": "69.4",
      "reported_period": "December",
      "time": "2023-12-22T15:00:00Z",
      "type": "report"
    },
    {
      "event": "PCE index",
      "forecast": null,
      "prev": "0.0%",
      "reported_period": "November",
      "time": "2023-12-22T13:30:00Z",
      "type": "report"
    }
  ]
}