get_events
Fetch economic calendar data by week range and country code. Access event titles, dates, importance levels, and source URLs to track market-moving financial announcements and plan trading strategies.
Instructions
Economic events calendar. Retrieve economic events calendar data for a specified time range → Returns {total_count: number, range: string, last_update: number, data: [{title?: string, country?: string, type?: string, currency?: string, importance?: string, date?: string, source_url?: string}]}. Default: current week. Use 'w' to look ahead. Filter by country with 'c'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| w | No | Specifies the week range. For example, 1 means this week (starting today) through next week, 2 means next week through the following week, and so on. | |
| c | No | (Optional) Filter by country code(s) as a comma-separated ISO 3166-1 alpha-2 string, for example `US,AR`. Invalid codes will be ignored. | |
| filter | No | (Optional) JSONata expression to filter/transform the API response server-side before it reaches you. Use this to extract only the fields or rows you need, reducing token usage. See https://jsonata.org for syntax. |