get_newsfeed
Retrieve financial news with keyword filtering to monitor market trends and track specific stocks or sectors.
Instructions
News feed. Retrieve latest financial news with optional keyword filtering → Returns {last_update: number, total_items: number, current_items: number, page: number, has_next: boolean, data: [{title?: string, content?: string, link?: string, published_at: number, related_symbols?: string[]}]}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | (Optional) Keywords to include items that match one of the keywords in the title or content, separated by a comma. e.g. apple,tesla | |
| limit | No | (Optional) Limit the number of news items returned. Must be an integer between 1 and 500. Default is 500. | |
| page | No | Page number for pagination | |
| 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. |