get_latest_rss
Retrieve RSS feed content from TrendRadar, allowing users to access recent articles from specified sources with configurable date ranges and result limits.
Instructions
获取最新的 RSS 订阅数据(支持多日查询)
RSS 数据与热榜新闻分开存储,按时间流展示,适合获取特定来源的最新内容。
Args: feeds: RSS 源 ID 列表,如 ['hacker-news', '36kr'],不指定则返回所有源 days: 获取最近 N 天的数据,默认 1(仅今天),最大 30 天 limit: 返回条数限制,默认50,最大500 include_summary: 是否包含文章摘要,默认False(节省token)
Returns: JSON格式的 RSS 条目列表
Examples: - get_latest_rss() - get_latest_rss(days=7, feeds=['hacker-news'])
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| feeds | No | ||
| days | No | ||
| limit | No | ||
| include_summary | No |