- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 前瞻分析
- 球队统计
- 选手统计
- 赛事晋级图
- 赛事积分榜
- 赛事统计
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
澳式橄榄球积分榜
GET
/sport/api/v3/stats/222/standings
获取澳式橄榄球积分榜,自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的积分榜。
更新数据:有需要时请求接口,更新数据。
频率建议:1天/次
Request
Query Params
series_id
string
optional
Example:
14548
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/222/standings?series_id=14548&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": 222,
"series_id": 14548,
"name": "WAFL 2025",
"teams": [
{
"team_id": 200170,
"position": 1,
"total": 6,
"won": 5,
"loss": 1,
"draw": 0,
"goal_diff": 156,
"last5": [
1,
1,
1,
1,
0
],
"won_rate": 0,
"points": 20
},
{
"team_id": 200192,
"position": 2,
"total": 6,
"won": 5,
"loss": 1,
"draw": 0,
"goal_diff": 148,
"last5": [
1,
1,
0,
1,
1
],
"won_rate": 0,
"points": 20
},
{
"team_id": 200166,
"position": 3,
"total": 6,
"won": 5,
"loss": 1,
"draw": 0,
"goal_diff": 101,
"last5": [
1,
0,
1,
1,
1
],
"won_rate": 0,
"points": 20
},
{
"team_id": 200162,
"position": 4,
"total": 6,
"won": 4,
"loss": 2,
"draw": 0,
"goal_diff": 31,
"last5": [
0,
1,
1,
1,
1
],
"won_rate": 0,
"points": 16
},
{
"team_id": 200179,
"position": 5,
"total": 6,
"won": 3,
"loss": 2,
"draw": 1,
"goal_diff": 113,
"last5": [
0,
1,
1,
0,
1
],
"won_rate": 0,
"points": 14
},
{
"team_id": 200177,
"position": 6,
"total": 6,
"won": 2,
"loss": 3,
"draw": 1,
"goal_diff": -98,
"last5": [
1,
0,
1,
0,
0
],
"won_rate": 0,
"points": 10
},
{
"team_id": 200186,
"position": 7,
"total": 6,
"won": 2,
"loss": 4,
"draw": 0,
"goal_diff": 15,
"last5": [
0,
0,
0,
1,
0
],
"won_rate": 0,
"points": 8
},
{
"team_id": 200184,
"position": 8,
"total": 6,
"won": 1,
"loss": 5,
"draw": 0,
"goal_diff": -89,
"last5": [
1,
0,
0,
0,
0
],
"won_rate": 0,
"points": 4
},
{
"team_id": 200189,
"position": 9,
"total": 6,
"won": 1,
"loss": 5,
"draw": 0,
"goal_diff": -177,
"last5": [
0,
0,
0,
0,
1
],
"won_rate": 0,
"points": 4
},
{
"team_id": 200174,
"position": 10,
"total": 6,
"won": 1,
"loss": 5,
"draw": 0,
"goal_diff": -200,
"last5": [
0,
1,
0,
0,
0
],
"won_rate": 0,
"points": 4
}
]
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24