个股题材通达信
查询个股所属题材、关联度和入选原因。
查询个股所属题材、关联度和入选原因。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
code | string | 是 | 股票代码:支持 000001、000001.SZ、sz000001;批量可传列表或英文逗号分隔字符串。 | |
topic_type | string | 否 | 题材类型:sector 板块题材、theme 主题题材;默认 theme。 | "theme" |
参数说明
不传时间;按 code 和 topic_type 返回该股票当前完整题材列表。
参数示例
# 单个标的
client.call("stock_topic_exposure_tdx", code="000001.SZ", topic_type="theme")
# 批量请求多个标的
client.call("stock_topic_exposure_tdx", code=["000034.SZ", "000001.SZ"], topic_type="theme")返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
instrument_id | string | AxData 统一证券代码,例如 000001.SZ。 |
symbol | string | 交易所原始六位代码。 |
topic_type | string | 题材类型:sector 板块题材、theme 主题题材。 |
created_date | date | 创建日期。 |
topic_name | string | 题材名称。 |
relevance | number | 关联度,源端评价分值。 |
selected_date | date | 入选或更新日期;源端可能为空。 |
reason | string | 入选原因或栏目内容。 |
topic_id | string | 题材 ID。 |
group_code | string | 源端分组类别码;主题题材可能为空。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"stock_topic_exposure_tdx",
code='000001.SZ',
topic_type='theme',
)
HTTP API
POST /v1/request/stock_topic_exposure_tdx
Content-Type: application/json
{
"params": {
"code": "000001.SZ",
"topic_type": "theme"
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"code": "000001.SZ",
"topic_type": "theme"
}
响应样例
| instrument_id | symbol |
|---|---|
| 000001.SZ | 000001 |
生成时间:2026-07-06T16:54:55+00:00