- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
转会记录接口
GET
/esport/api/v3/advanced/list/transfers
获取无畏契约各个选手的转会记录,自定义参数查询。(不同项目路径相同,依据游戏ID区分)
接口返回所传参数的全量转会记录。
初始化:全量请求,获取当前所有转会记录。
更新数据:需要时请求更新数据。
建议频率:1次/天
Request
Query Params
sport_id
string
optional
Example:
14
player_id
integer
optional
team_id
integer
optional
page
integer
optional
per_page
integer
optional
language
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/advanced/list/transfers?sport_id=14&player_id&team_id&page&per_page&language'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {6}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 14,
"player_id": 142195,
"name": "Deryeon",
"from": 41919,
"to": 42018,
"time": 1735488000
},
{
"sport_id": 14,
"player_id": 123208,
"name": "BERRY",
"from": 31746,
"to": 31796,
"time": 1735488000
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24