- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
战队能力图谱
GET
/esport/api/v3/advanced/4/team/abilities
获取Dota2战队排行榜,自定义参数查询。(不同项目路径相同,依据游戏ID区分)
接口返回所传参数的全量排名情况。
初始化:全量请求,获取当前所有排名情况。
更新数据:需要时请求更新数据。
建议频率:1次/天
Request
Query Params
team_id
string
required
Example:
1007
page
integer
optional
per_page
integer
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 '/esport/api/v3/advanced/4/team/abilities?team_id=1007&page&per_page'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {9}]
required
total
integer
总条数
msg
string
接口相应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 4,
"team_id": 1007,
"offensive_capability": 2,
"defensive_capability": 5,
"team_resilience": 5,
"resource_control": 4,
"gold": 2,
"early_game_capability": 7,
"late_game_capability": 7
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24