板块实时行情东方财富
临时获取东方财富板块实时行情数据,默认不入库。
请求东方财富行业/概念板块行情,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
sector_type | string | 否 | 板块类型:industry、concept、industry_l1、industry_l2、industry_l3。 | "industry" |
page | integer | 否 | 页码,默认 1。 | 1 |
limit | integer | 否 | 每页条数,默认 100,最大 200。 | 100 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
sector_code | string | 板块代码。 |
sector_name | string | 板块名称。 |
sector_type | string | 板块类型。 |
last_price | number | 板块最新价。 |
change_pct | number | 涨跌幅,百分比数值。 |
change | number | 涨跌额。 |
volume | number | 成交量,源端口径。 |
amount | number | 成交额,单位:元。 |
amplitude | number | 振幅,百分比数值。 |
turnover_rate | number | 换手率,百分比数值。 |
total_market_value | number | 总市值,单位:元。 |
main_inflow | number | 主力净流入,单位:元。 |
lead_stock_name | string | 领涨股名称。 |
lead_stock_symbol | string | 领涨股六位代码。 |
lead_stock_change_pct | number | 领涨股涨跌幅。 |
up_count | integer | 上涨家数。 |
down_count | integer | 下跌家数。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"eastmoney_sector_realtime",
limit=5,
sector_type='industry',
)
HTTP API
POST /v1/request/eastmoney_sector_realtime
Content-Type: application/json
{
"params": {
"sector_type": "industry",
"limit": 5
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"sector_type": "industry",
"limit": 5
}
响应样例
| sector_code | sector_name | change_pct |
|---|---|---|
| BK0475 | 银行 | 1.2 |
生成时间:2026-07-06T16:54:55+00:00