- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
足球俱乐部排名接口
GET
/sport/api/v3/advanced/list/club_rank
获取足球俱乐部排名信息,自定义参数查询。
该接口返回所请求参数的排名数据。
更新数据:确认列表变动后更新数据,有需要时请求。
频率建议:1天/次
Request
Query Params
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/advanced/list/club_rank?page&per_page&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {7}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 202,
"team_id": 1234,
"ranking": 1,
"points": 2300,
"last_points": 1243,
"rank_change": 4,
"update_time": 1728958472
},
{
"sport_id": 202,
"team_id": 1326,
"ranking": 2,
"points": 2071,
"last_points": 1243,
"rank_change": 4,
"update_time": 1728958472
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24