- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
选手列表
GET
/esport/api/v3/base/list/player
获取游戏中的选手数据,根据自定义参数查询。
该接口返回所请求参数下的所有选手。
初始化:首次全量更新,根据游戏ID获取选手全量数据
更新数据:后续增量更新,根据参数recent_update获取增量变动数据
建议频率:1min/次
Request
Query Params
sport_id
string
optional
team_id
integer
optional
status
string
optional
page
integer
optional
per_page
integer
optional
language
string
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 '/esport/api/v3/base/list/player?sport_id&team_id&status&page&per_page&language&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {17}]
required
total
integer
总条数
msg
string
接口信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 1,
"player_id": 139451,
"team_id": 31094,
"league_id": 0,
"region_id": 200,
"sportsman_id": 0,
"name": "徐士傑",
"name_en": "TPElXU",
"abbr": "tpelxu",
"abbr_en": "tpelxu",
"logo": "/lol/player/f797c33b1a2e8af61bbde3fe6018e5ca.jpg",
"position": "top",
"status": "work",
"half_logo": "/default/default.png",
"is_first": 0,
"power_value": 0,
"update_time": 1695802926
},
{
"sport_id": 1,
"player_id": 139450,
"team_id": 24517,
"league_id": 0,
"region_id": 200,
"sportsman_id": 0,
"name": "林伟伦",
"name_en": "Mass",
"abbr": "masllimlwl",
"abbr_en": "masllimlwl",
"logo": "/lol/player/88e9d07a3b54b2e32a3210ce274fa019.jpg",
"position": "mid",
"status": "work",
"half_logo": "/default/default.png",
"is_first": 0,
"power_value": 0,
"update_time": 1695809140
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24