龙虎榜机构席位追踪新浪财经
临时获取新浪财经龙虎榜机构席位追踪数据,默认不入库。
临时请求新浪龙虎榜机构席位追踪单页,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
symbol | string | 否 | 统计窗口天数:5、10、30、60;默认 5。 | "5" |
page | integer | 否 | 页码,默认 1。 | 1 |
limit | integer | 否 | 当前页最多返回行数,默认 40,最大 1000。 | 40 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
recent_days | integer | 统计窗口天数:5、10、30、60。 |
page | integer | 源端页码。 |
rank | integer | 当前页内序号,从 1 开始。 |
instrument_id | string | AxData 统一证券代码。 |
symbol | string | 六位股票代码。 |
exchange | string | 交易所代码:SSE、SZSE、BSE。 |
name | string | 股票名称。 |
buy_amount_10k_yuan | number | 机构累积买入额,单位:万元。 |
buy_count | integer | 机构买入次数。 |
sell_amount_10k_yuan | number | 机构累积卖出额,单位:万元。 |
sell_count | integer | 机构卖出次数。 |
net_amount_10k_yuan | number | 机构净额,单位:万元。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_lhb_jgzz_sina",
limit=1,
page=1,
symbol='5',
)
HTTP API
POST /v1/request/stock_lhb_jgzz_sina
Content-Type: application/json
{
"params": {
"symbol": "5",
"page": 1,
"limit": 1
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"symbol": "5",
"page": 1,
"limit": 1
}
响应样例
| recent_days | page | rank | instrument_id | symbol | exchange | name | buy_amount_10k_yuan | buy_count | sell_amount_10k_yuan | sell_count | net_amount_10k_yuan |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 5 | 1 | 1 | 000725.SZ | 000725 | SZSE | 京东方A | 721552.5 | 4 | 457528.1 | 3 | 264024.4 |
生成时间:2026-07-06T16:54:55+00:00