- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- 1. Sports Type
- 2. Region
- 3. Country
- 4. League
- 5. Series Interface
- 6.Stage Interface
- 7. Team Interface
- 8. Player Interface
- 9.Coach Interface
- 10.Referee Interface
- 11.Venue Interface
- 12.Honor Interface
- 1. Sports Type
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
Series List
GET
/sport/api/v3/base/list/series
Get the event list data of a single sport - custom parameter query.
This interface returns the full league data of the requested parameters.
Initialize data: Request all event data by sport type, full update.
Update data: Request as needed, get data updated in the recent period. (Supports data updated within 30 minutes, 1 hour, 12 hours, 48 hours.)
Suggested Frequency: 1min/time
Request
Query Params
sport_id
string
optional
region_id
integer
optional
status
string
optional
page
integer
optional
per_page
integer
optional
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 '/sport/api/v3/base/list/series?sport_id®ion_id&status&page&per_page&language&recent_update'
Responses
🟢200success
application/json
Body
code
integer
错误码
data
object
required
list
array [object {16}]
required
total
integer
数据总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 201,
"series_id": 12207,
"region_id": 8,
"league_id": 10605,
"name": "中国女子青年篮球锦标赛U19",
"name_en": "China Women's Youth Basketball Championship U19",
"abbr": "中国女子青年篮球锦标赛U19",
"abbr_en": "CBC U19",
"year": 2021,
"start_time": 1722787200,
"end_time": 1725119999,
"status": "past",
"level": 4,
"cover": "/201/1/f541c5224c7e7efbe6d77ec5c1360c30.png",
"menu": [
0,
1,
0,
1,
1,
1,
1,
0,
0
],
"update_time": 1725290859
},
{
"sport_id": 201,
"series_id": 12241,
"region_id": 0,
"league_id": 9727,
"name": "奥运会 三对三资格赛",
"name_en": "Olympic Games Three-on-three qualifiers",
"abbr": "奥运会 三对三资格赛",
"abbr_en": "Olympic Games Three-on-three qualifiers",
"year": 2021,
"start_time": 1722787200,
"end_time": 1722787200,
"status": "past",
"level": 99,
"cover": "/201/1/f541c5224csdrrbe6d77ec5c1360c30.png",
"menu": [
0,
1,
0,
1,
1,
1,
1,
0
],
"update_time": 1725290859
},
{
"sport_id": 201,
"series_id": 12207,
"region_id": 0,
"league_id": 10402,
"name": "2024年NBA选秀大会",
"name_en": "2024 NBA Draft",
"abbr": "2024年NBA选秀大会",
"abbr_en": "NBA Draft",
"year": 2024,
"start_time": 1719417600,
"end_time": 1719590399,
"status": "past",
"level": 1,
"cover": "/201/1/f541c5224c7e7efbe6d77ec5sdv30c30.png",
"menu": [
0,
1,
0,
1,
1,
1,
1,
0
],
"update_time": 1725290859
}
],
"total": 3
},
"msg": "success"
}
Modified at 2025-06-20 03:50:34