跳到主要内容

基金资讯列表

通用约定
  • Base URLhttps://fuyao.aicubes.cn
  • 必需请求头X-api-key;认证与权限错误通过业务 code 表达。
  • 接口返回统一 ApiResponse 信封;时间戳均为毫秒级 Unix 时间戳,时区按 Asia/Shanghai
  • fund_typeotcexchangereitsthscode 必须保留市场后缀。offset 是不透明游标,翻页时必须原样回传。
GET /api/fund/news/article-list

MCP Toolget_fund_news_article_list

请求参数

参数类型必需默认值说明
fund_typestringotc / exchange / reits
thscodestring完整基金 thscode。
limitinteger服务端默认返回条数。
offsetstring不透明翻页游标;下一页应原样回传上一页的 data.offset
curl 'https://fuyao.aicubes.cn/api/fund/news/article-list?fund_type=exchange&thscode=510300.SH&limit=20' \
-H 'X-api-key: <your-api-key>'

响应示例

{
"code": 0,
"message": "success",
"request_id": "4132cc25f7be4c70aa490ef02b8a66bf",
"data": {
"timestamp": 1786690800000,
"limit": 20,
"offset": "next-page-cursor",
"has_more": false,
"item": [
{
"id": "article-001",
"content_type": "news",
"title": "基金资讯标题",
"summary": "基金资讯摘要",
"source": "公开资讯",
"url": "https://example.com/article-001",
"image_url": null,
"author": "编辑部",
"publish_time_ms": 1786687200000,
"top": false
}
]
}
}

返回字段

data 分页字段:

字段类型说明
timestamplong接口响应时间戳。
limitinteger本页返回条数上限。
offsetstring | null下一页游标;继续翻页时原样回传。
has_moreboolean是否还有下一页;分页结束统一以该字段为准。
itemarray资讯明细列表。

该接口使用游标/窗口分页,上游不提供可靠的总记录数,因此 data 不返回 total

data.item[] 字段:

字段类型说明
idstring资讯 ID。
content_typestring内容类型。
title / summarystring标题与摘要。
source / authorstring来源与作者。
url / image_urlstring | null正文链接与图片链接。
publish_time_mslong发布时间,毫秒 Unix 时间戳。
topboolean是否置顶。

通用鉴权与错误码参见基金 API 总览