- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
战队能力图谱
GET
/esport/api/v3/advanced/3/team/abilities
获取王者荣耀各个战队的能力图谱数据,包含进攻能力,防守能力,队伍韧性等数据。自定义参数查询,不同项目路径不同。
接口返回所传参数的全量能力图谱数据。
初始化:全量请求,获取当前所有战队的数据。
更新数据:需要时请求更新数据。
建议频率:1次/天
Request
Query Params
team_id
string
required
Example:
2526
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/3/team/abilities?team_id=2526&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": 3,
"team_id": 2526,
"offensive_capability": 2,
"defensive_capability": 4,
"team_resilience": 9,
"resource_control": 6,
"gold": 5,
"early_game_capability": 4,
"late_game_capability": 6
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24