ETF 跟踪指数

ETF 基准指数目录,提供指数名称、发布机构、发布日期、基日和调整周期等资料,每周一刷新。

GET /v2/etf/indices

请求参数

参数类型必填说明
symbolstring指数代码,如 000300.SH
pub_datestring指数发布日期,YYYYMMDD
base_datestring指数基日,YYYYMMDD

返回字段

字段类型说明
symbolstring指数代码
indx_namestring指数全称
indx_csnamestring指数简称
pub_party_namestring指数发布机构
pub_datestring发布日期,YYYYMMDD
base_datestring基日,YYYYMMDD
bpnumber基点
adj_circlestring成分调整周期

接口示例

cURL
curl -H "X-API-Key: YOUR_KEY" \
  "https://databull.cn/v2/etf/indices?symbol=000300.SH"
Python SDK
from databull import DataBull

client = DataBull(api_key="YOUR_KEY")
df = client.etf_indices(symbol="000300.SH")
print(df.head())

数据样例

返回 pandas.DataFrame
symbol indx_name indx_csname pub_party_name pub_date base_date bp adj_circle
000300.SH 沪深300指数 沪深300 中证指数有限公司、上海证券交易所 20050408 20041231 1000 半年
000852.SH 中证1000指数 中证1000 中证指数有限公司 20141017 20041231 1000 半年
000905.SH 中证小盘500指数 中证500 中证指数有限公司 20070115 20041231 1000 半年