- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
比赛对应列表接口
GET
/esport/api/v3/mapping/list/match
获取比赛id对应关系(本产品比赛id跟其他产品比赛id对应数据)
该接口返回所请求参数的全量赛程的比赛id对应关系数据(请求限制:前后30天的赛程
初始化数据:根据日期请求,跑一遍前后30天赛程
更新数据:
方案1:请求10分钟内有变化的比赛关联数据:1次/min(全量更新)
方案2:接推送,接收实时有变化的数据(长链接推送/基础数据/比赛关联推送)
频率限制:30次/min
Request
Query Params
sport_id
string
required
league_id
string
optional
series_id
string
optional
page
integer
optional
per_page
integer
optional
status
integer
optional
start_time_gt
integer
optional
start_time_lt
integer
optional
recent_update
string
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/esport/api/v3/mapping/list/match?sport_id=&league_id&series_id&page&per_page&status&start_time_gt&start_time_lt&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {4}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 1,
"match_id": 370018,
"other_match_id": [
{
"project_id": 1,
"match_id": 214864,
"same_side": 1
},
{
"project_id": 2,
"match_id": 73518,
"same_side": 1
}
],
"update_time": 1721273608
},
{
"sport_id": 1,
"match_id": 214865,
"other_match_id": [
{
"project_id": 1,
"match_id": 370019,
"same_side": 1
},
{
"project_id": 2,
"match_id": 73519,
"same_side": 1
}
],
"update_time": 1721273608
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24