个股研报列表东方财富
低频获取个股研报列表元信息;不抓取 PDF 正文。
这个接口只保留已确认字段;金额字段单位为元,遇到源端空结果返回空表。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码,支持 000001、000001.SZ。 | |
start_date | string | 否 | 开始发布日期,YYYYMMDD 或 YYYY-MM-DD。 | |
end_date | string | 否 | 结束发布日期,YYYYMMDD 或 YYYY-MM-DD。 | |
page | integer | 否 | 页码,默认 1。 | 1 |
limit | integer | 否 | 每页条数,默认 20,最大 100。 | 20 |
参数说明
不传 fields 时返回上方全部字段;临时调用只查一次。
参数示例
client.call("eastmoney_research_reports", code="000001.SZ", start_date="20240101", end_date="20241231", limit=5)返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
report_id | string | 研报 ID。 |
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位证券代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 证券简称。 |
title | string | 研报标题。 |
publish_date | date | 发布日期,格式 YYYYMMDD。 |
org_name | string | 研究机构。 |
rating | string | 评级。 |
rating_change | string | 评级变动源端值。 |
researcher | string | 研究员。 |
eps_forecast_this_year | number | 本年度 EPS 预测,单位:元/股。 |
pe_forecast_this_year | number | 本年度 PE 预测,倍。 |
file_size_kb | number | 附件大小,单位:KB。 |
page_count | integer | 附件页数。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"eastmoney_research_reports",
code='000001.SZ',
end_date='20241231',
limit=5,
start_date='20240101',
)
HTTP API
POST /v1/request/eastmoney_research_reports
Content-Type: application/json
{
"params": {
"code": "000001.SZ",
"start_date": "20240101",
"end_date": "20241231",
"limit": 5
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ",
"start_date": "20240101",
"end_date": "20241231",
"limit": 5
}
响应样例
| report_id | instrument_id | symbol | exchange | name | title | publish_date | org_name | rating | rating_change | researcher | eps_forecast_this_year | pe_forecast_this_year | file_size_kb | page_count |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AP202410221640398395 | 000001.SZ | 000001 | SZSE | 平安银行 | 2024年三季报点评:零售业务调优结构,存款成本持续改善 | 20241022 | 东兴证券股份有限公司 | 买入 | 3 | 林瑾璐,田馨宇 | 2.6 | 4.54 | 960.0 | 8 |
生成时间:2026-07-06T16:54:55+00:00