纳米体育数据的数据接口通过JSON拉流方式获取200多个国家的体育赛事实时数据或历史数据的编程接口,无请求次数限制,可按需购买,接口稳定高效;覆盖项目包括足球、篮球、网球、电子竞技、奥运等专题、数据内容。
纳米数据API2.0版本包含http协议以及websocket协议,主要通过http获取数据,实时数据通过websocket获取。
http协议支持http和https,每个接口都需要传递用户名和密钥用于验证接口权限,白名单ip才能够获取相关数据。
websocket协议域名为s.sportnanoapi.com,通过mqtt的websocket协议实现,用户名、密钥和白名单ip必须正确才能订阅数据,否则无法授权,api通过java、python示例,同时也包含其他语言。
获取赛事对阵列表
返回全量赛事对阵数据,可根据时间戳增量获取新增或变动的数据
1、首次全量更新,根据参数id获取全量数据
2、后续增量更新,根据参数time增量获取变动数据(建议请求频次:1min/次)
连线说明:
1、根据sequence_type层级字段,区分同一组轮次并分层;
2、根据column_num列数(x轴)、row_num排数(y轴)字段,左上为原点,布局对阵图;
3、根据num标识字段,关联‘赛事对阵连线列表’接口,用于连线;
4、num为0,相邻列之间,相同战队连线。
请求参数:TREE
-
userstring
用户名,请联系商务
必填
-
secretstring
用户密钥,请联系商务
必填
-
idinteger
查询大于等于id的记录,根据id排序
-
timeinteger
查询大于等于更新时间的记录(时间戳),根据更新时间排序
-
limitinteger
返回数据最大数,默认为1000,最大为1000
返回参数:TREE
{
code:
integer
query: {
查询情况
total: integer
返回数据总量
type: string
查询类型,id查询:id、time查询:time,默认id
id: integer
查询id值,默认为0(id查询,字段返回)
min_id: integer
返回数据最小id(id查询,字段返回)
max_id: integer
返回数据最大id(id查询,字段返回)
limit: integer
可返回数据最大数(id查询,字段返回)
time: integer
查询time值(time查询,字段返回)
min_time: integer
返回数据最小time(更新时间戳)(time查询,字段返回)
max_time: integer
返回数据最大time(更新时间戳)(time查询,字段返回)
}results:[ {id: integer
对阵id
match: {
比赛项
id: integer
比赛id
}stage: {
阶段项
id: integer
阶段id
}part_stage: {
副阶段项
id: integer
阶段id
}round: {
轮次项
id: integer
轮次id
}column_num: integer
第几列(x轴)
row_num: integer
第几排(y轴)
sequence_type: integer
层级,用于关联同一组轮次(如1同属于胜者组,2同属于败者组)
num: integer
num标识,用于连线
tournament: {
赛事项
id: integer
赛事id
}is_promotion: integer
是否晋级,1.是、0.否
promotion_name: string
晋级名称
updated_at: integer
更新时间
}]
}