</>

估值表通达信

查询估值、市值和估值百分位。

查询估值、市值和估值百分位。

输入参数

参数类型必填说明默认值
codestring股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。
start_datestring起始日期,可选;按 date 过滤。
end_datestring结束日期,可选;按 date 过滤。
countinteger返回条数,默认 20。20
参数示例
# 单个标的
client.call("stock_valuation_metrics_tdx", code="000001.SZ", count=5)

# 批量请求多个标的
client.call("stock_valuation_metrics_tdx", code=["000034.SZ", "000001.SZ"], count=5)

返回字段

字段类型说明
instrument_idstringAxData 统一证券代码,例如 000001.SZ。
symbolstring交易所原始六位代码。
datedate日期。
pe_ttmnumberPE(TTM)。
pe_percentilenumberPE 百分位。
pb_mrqnumberPB(MRQ)。
pb_percentilenumberPB 百分位。
pcf_ttmnumber市现率(TTM)。
pcf_percentilenumber市现率百分位。
ps_ttmnumber市销率(TTM)。
ps_percentilenumber市销率百分位。
pegnumberPEG。
float_market_capnumber流通市值。
total_market_capnumber总市值。

调用示例

Python SDK

import axdata as ax

client = ax.AxDataClient()
rows = client.call(
    "stock_valuation_metrics_tdx",
    code='000001.SZ',
    count=20,
)

HTTP API

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

{
  "params": {
    "code": "000001.SZ",
    "count": 20
  }
}

真实样例快照

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

请求参数

{
  "code": "000001.SZ",
  "count": 20
}

响应样例

instrument_idsymboldatepe_ttmpe_percentilepb_mrqpb_percentilepcf_ttmpcf_percentileps_ttmps_percentilepegfloat_market_captotal_market_cap
000001.SZ000001202606154.9841.210.465.71.1342.691.6164.660.1214625959936.0214629466112.0

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