# Restful API
https://tsanghi.com/api/fin/index/RUS/list?token={token}
更新时间:收盘后3~4小时。
更新周期:每天。
请求方式:GET。
# 测试:返回不超过10条数据(2年历史)
https://tsanghi.com/api/fin/index/RUS/list?token=demo
Request请求参数
参数名称 | 参数类型 | 参数选项 | 参数说明 |
token | 字符串 | 必选 | API Token。登录后获取。 |
ticker | 字符串 | 可选 | 指数代码。 |
fmt | 字符串 | 可选 | 输出格式。支持json和csv两种标准输出格式,默认:json。 |
columns | 字符串 | 可选 | 输出字段。支持自定义输出,多个字段以半角逗号分隔,默认:所有字段。 |
Response响应参数
参数名称 | 参数类型 | 参数说明 |
ticker | 字符串 | 指数代码 |
name | 字符串 | 指数名称 |
country_code | 字符串 | 国家/地区代码。详见国家/地区清单接口。 |
Python示例
import requests
url = f"https://tsanghi.com/api/fin/index/RUS/list?token=demo"
data = requests.get(url).json()
print(data)
Response示例
# 更多详情
https://tsanghi.com