- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 前瞻分析
- 球队统计
- 选手统计
- 赛事晋级图
- 赛事积分榜
- 赛事统计
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
冰球积分榜
GET
/sport/api/v3/stats/227/standings
获取冰球积分榜,自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的积分榜。
更新数据:有需要时请求接口,更新数据。
频率建议:1天/次
Request
Query Params
series_id
string
optional
Example:
16625
page
integer
optional
per_page
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 '/sport/api/v3/stats/227/standings?series_id=16625&page=&per_page=&recent_update='
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {5}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"standing_id": 1,
"sport_id": 227,
"series_id": 16625,
"name": "WHL 24/25, Eastern Conference",
"teams": [
{
"team_id": 209832,
"position": 1,
"total": 68,
"won": 47,
"loss": 21,
"otl": 3,
"goal_diff": 107,
"last5": [
1,
1,
1,
1,
1
],
"points": 98
},
{
"team_id": 209364,
"position": 4,
"total": 68,
"won": 39,
"loss": 29,
"otl": 5,
"goal_diff": 25,
"last5": [
1,
1,
1,
1,
1
],
"points": 84
},
{
"team_id": 209365,
"position": 7,
"total": 68,
"won": 37,
"loss": 31,
"otl": 2,
"goal_diff": 37,
"last5": [
1,
0,
1,
0,
0
],
"points": 78
}
]
},
{
"standing_id": 1,
"sport_id": 227,
"series_id": 16625,
"name": "WHL 24/25, Western Conference",
"teams": [
{
"team_id": 209830,
"position": 2,
"total": 68,
"won": 45,
"loss": 23,
"otl": 1,
"goal_diff": 90,
"last5": [
1,
0,
0,
1,
0
],
"points": 93
},
{
"team_id": 209831,
"position": 3,
"total": 68,
"won": 40,
"loss": 28,
"otl": 4,
"goal_diff": 54,
"last5": [
0,
1,
1,
1,
1
],
"points": 91
}
]
},
{
"standing_id": 1,
"sport_id": 227,
"series_id": 16625,
"name": "WHL 24/25",
"teams": [
{
"team_id": 209832,
"position": 2,
"total": 68,
"won": 47,
"loss": 21,
"otl": 3,
"goal_diff": 107,
"last5": [
1,
1,
1,
1,
1
],
"points": 98
},
{
"team_id": 209830,
"position": 4,
"total": 68,
"won": 45,
"loss": 23,
"otl": 1,
"goal_diff": 90,
"last5": [
1,
0,
0,
1,
0
],
"points": 93
},
{
"team_id": 209831,
"position": 5,
"total": 68,
"won": 40,
"loss": 28,
"otl": 4,
"goal_diff": 54,
"last5": [
0,
1,
1,
1,
1
],
"points": 91
},
{
"team_id": 209364,
"position": 8,
"total": 68,
"won": 39,
"loss": 29,
"otl": 5,
"goal_diff": 25,
"last5": [
1,
1,
1,
1,
1
],
"points": 84
},
{
"team_id": 209365,
"position": 11,
"total": 68,
"won": 37,
"loss": 31,
"otl": 2,
"goal_diff": 37,
"last5": [
1,
0,
1,
0,
0
],
"points": 78
}
]
}
],
"total": 3
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24