- 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
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
Stage List
GET
/sport/api/v3/base/list/stage
Recommended Request
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
Get the list of stage data for the movement - custom parameter query.
This interface returns the full stage data for the requested parameters.
Initialize data: request all stage data based on the type of movement, update in full.
Request
Query Params
sport_id
string
optional
Example:
201
stage_id
string
optional
Example:
17232,17234
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/stage?sport_id=201&stage_id=17232,17234&page&per_page&language&recent_update'
Responses
🟢200success
application/json
Body
code
integer
错误码
data
object
required
list
array [object {13}]
required
total
integer
数据总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 202,
"stage_id": 15177,
"series_id": 12303,
"league_id": 299,
"name": "第二圈",
"name_en": "Round 2",
"type": 1,
"mode": 2,
"group_count": 0,
"round_count": 0,
"order": 4,
"lang": {
"name_zh": "",
"name_zh_tw": "",
"name_en": "",
"name_es": "",
"name_pt_br": "",
"name_fr": "",
"name_tr": "",
"name_de": "",
"name_sv": "",
"name_el": "",
"name_ru": "",
"name_uk": "",
"name_da": "",
"name_pl": "",
"name_ko": "",
"name_nl": "",
"name_ms": "",
"name_tl": "",
"name_vi": "",
"name_ar": "",
"name_th": "",
"name_hi": "",
"name_ja": ""
},
"update_time": 1726713610
},
{
"sport_id": 202,
"stage_id": 15176,
"series_id": 11942,
"league_id": 522,
"name": "决赛",
"name_en": "finals",
"mode": 2,
"group_count": 0,
"round_count": 0,
"order": 8,
"lang": {
"name_zh": "",
"name_zh_tw": "",
"name_en": "",
"name_es": "",
"name_pt_br": "",
"name_fr": "",
"name_tr": "",
"name_de": "",
"name_sv": "",
"name_el": "",
"name_ru": "",
"name_uk": "",
"name_da": "",
"name_pl": "",
"name_ko": "",
"name_nl": "",
"name_ms": "",
"name_tl": "",
"name_vi": "",
"name_ar": "",
"name_th": "",
"name_hi": "",
"name_ja": ""
},
"update_time": 1726675079
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-20 03:44:33