</>

A股实时行情列表腾讯财经

临时获取腾讯财经A股实时行情列表数据,默认不入库。

临时请求腾讯财经 A 股行情排行列表,默认低页数小样本,不入库。

输入参数

参数类型必填说明默认值
sort_typestring排序字段,默认 price;可选 price、change_pct、volume、amount。"price"
directionstring排序方向:down 降序、up 升序;默认 down。"down"
offsetinteger起始偏移量,默认 0。0
limitinteger返回行数,默认 20,最大 200。20

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码。
symbolstring六位证券代码。
exchangestring交易所代码:SSE、SZSE、BSE。
asset_typestring资产类型,固定为 stock。
namestring证券简称。
last_pricenumber最新价,单位:元。
changenumber涨跌额,单位:元。
change_pctnumber涨跌幅,百分比数值。
amplitudenumber振幅,百分比数值。
volumenumber成交量,沿用腾讯源端口径。
amountnumber成交额,沿用腾讯源端口径。
turnover_ratenumber换手率,百分比数值。
pe_ttmnumber滚动市盈率。
total_market_valuenumber总市值,沿用腾讯源端口径。
float_market_valuenumber流通市值,沿用腾讯源端口径。
quote_statestring源端行情状态。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_zh_a_spot_tx",
    direction='down',
    limit=3,
    offset=0,
    sort_type='price',
)

HTTP API

POST /v1/request/stock_zh_a_spot_tx
Content-Type: application/json

{
  "params": {
    "sort_type": "price",
    "direction": "down",
    "offset": 0,
    "limit": 3
  }
}

真实样例快照

展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。

请求参数

{
  "sort_type": "price",
  "direction": "down",
  "offset": 0,
  "limit": 3
}

响应样例

instrument_idsymbolexchangeasset_typenamelast_pricechangechange_pctamplitudevolumeamountturnover_ratepe_ttmtotal_market_valuefloat_market_valuequote_state
688808.SH688808SSEstock联讯仪器79.45140.06.5713.9419239.58424746.09.97852.972330.0438.02

生成时间:2026-07-06T16:54:55+00:00