- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
赛事列表
GET
/esport/api/v3/base/list/series
获取游戏赛事的列表,根据自定义参数查询。
该接口返回所请求参数下的所有游戏赛事,一般更新较少。
初始化:首次全量更新,根据游戏ID获取赛事全量数据
更新数据:后续增量更新,根据参数recent_update获取增量变动数据
建议频率:1min/次
Request
Query Params
sport_id
string
optional
league_id
integer
optional
page
integer
optional
per_page
integer
optional
status
string
optional
Example:
live
language
string
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/base/list/series?sport_id&league_id&page&per_page&status=live&language&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {24}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 1,
"series_id": 35094,
"region_id": 200,
"league_id": 1821,
"name": "LPL-夏季赛 2024",
"name_en": "LPL-Summer 2024",
"abbr": "LPL-夏季赛",
"abbr_en": "LPL",
"logo": "/league/3f0930a599dce336646000f18f87e236.png",
"status": "past",
"start_time": 1720170000,
"end_time": 1722430800,
"intro": "",
"location": "上海 苏州 北京 西安",
"location_en": "shanghai xian beijing shuzhou",
"host": "Tencent Games",
"game_version": "",
"level": 2,
"cover": "/league/1bb9aa4c9b44246e263c74202ec786bd.png",
"bonus": "$579,690",
"ordinary_mvp": 765,
"finals_mvp": 765,
"menu": [
0,
1,
0,
1
],
"update_time": 1725004803
},
{
"sport_id": 1,
"series_id": 32463,
"region_id": 200,
"league_id": 1945,
"name": "德玛西亚杯-2023",
"name_en": "Demacia Cup-2023",
"abbr": "德玛西亚杯",
"abbr_en": "Demacia Cup 2023",
"logo": "/league/8967dee72fe3272cdbb816e063ac192c.png",
"status": "past",
"start_time": 1720044000,
"end_time": 1720386000,
"intro": "",
"location": "中国",
"location_en": "China",
"host": "Tencent Games",
"game_version": "",
"level": 1,
"cover": "/league/4ec256c9082c1208ca3f0995df1bc8c9.png",
"bonus": "",
"ordinary_mvp": 40927,
"finals_mvp": 30470,
"menu": [
0,
1,
0,
1
],
"update_time": 1721460061
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24