# Economic calendar this week: high and medium importance events

**Use case:** 

This week's economic calendar for the US, euro area, UK and Japan from TradingView: every high and medium importance release with its time in UTC and New York time, actual, forecast and previous values and the surprise versus the forecast. Export as JSON, CSV or Excel.

## Input

```json
{
  "dateRange": "this_week",
  "timezone": "America/New_York",
  "countries": [
    "US",
    "EU",
    "GB",
    "JP"
  ],
  "importance": [
    "high",
    "medium"
  ],
  "actualFilter": "any",
  "includeDescription": false,
  "maxResults": 1000,
  "monitoringMode": false,
  "resetMonitoringState": false,
  "useProxy": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "importance": {
    "label": "Importance",
    "format": "string"
  },
  "dateTimeUtc": {
    "label": "Date Time Utc",
    "format": "string"
  },
  "localDateTime": {
    "label": "Local Date Time",
    "format": "string"
  },
  "actual": {
    "label": "Actual",
    "format": "string"
  },
  "forecast": {
    "label": "Forecast",
    "format": "string"
  },
  "previous": {
    "label": "Previous",
    "format": "string"
  },
  "unit": {
    "label": "Unit",
    "format": "string"
  },
  "scale": {
    "label": "Scale",
    "format": "string"
  },
  "surprise": {
    "label": "Surprise",
    "format": "string"
  },
  "surpriseDirection": {
    "label": "Surprise Direction",
    "format": "string"
  },
  "change": {
    "label": "Change",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "requestedRange": {
    "label": "Requested Range",
    "format": "string"
  },
  "requestUrl": {
    "label": "Request Url",
    "format": "string"
  },
  "httpStatus": {
    "label": "Http Status",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "eventId": {
    "label": "Event Id",
    "format": "string"
  },
  "indicator": {
    "label": "Indicator",
    "format": "string"
  },
  "countryName": {
    "label": "Country Name",
    "format": "string"
  },
  "importanceCode": {
    "label": "Importance Code",
    "format": "string"
  },
  "dateUtc": {
    "label": "Date Utc",
    "format": "string"
  },
  "timeUtc": {
    "label": "Time Utc",
    "format": "string"
  },
  "localDate": {
    "label": "Local Date",
    "format": "string"
  },
  "localTime": {
    "label": "Local Time",
    "format": "string"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "period": {
    "label": "Period",
    "format": "string"
  },
  "referenceDate": {
    "label": "Reference Date",
    "format": "string"
  },
  "actualRaw": {
    "label": "Actual Raw",
    "format": "string"
  },
  "forecastRaw": {
    "label": "Forecast Raw",
    "format": "string"
  },
  "previousRaw": {
    "label": "Previous Raw",
    "format": "string"
  },
  "hasActual": {
    "label": "Has Actual",
    "format": "string"
  },
  "surprisePercent": {
    "label": "Surprise Percent",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "sourceName": {
    "label": "Source Name",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source Url",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "changes": {
    "label": "Changes",
    "format": "string"
  },
  "isFirstCheck": {
    "label": "Is First Check",
    "format": "string"
  },
  "previousCheckedAt": {
    "label": "Previous Checked At",
    "format": "string"
  },
  "previousActual": {
    "label": "Previous Actual",
    "format": "string"
  },
  "previousForecast": {
    "label": "Previous Forecast",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Economic Calendar Scraper - Actual, Forecast & Previous](https://apify.com/neverempty/economic-calendar-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/economic-calendar-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/economic-calendar-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
