- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
篮球教练履历
GET
/sport/api/v3/advanced/201/coach_history
获取篮球教练履历资料,自定义参数查询。(不同项目路径不同)
该接口返回所请求参数的履历资料列表。
更新数据:有需要时请求,依据ID获取教练履历。
频率建议:1天/次
Request
Query Params
coach_id
string
optional
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/201/coach_history?coach_id=&page=&per_page=&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {5}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"coach_id": 1234,
"country_id": 1,
"birthday": "1986-12-10",
"history": [
{
"team_id": 12324,
"position": 1,
"joined": 1742281869,
"contract_until": 1742281869,
"matches": 100,
"win": 60,
"lose": 30
}
],
"update_time": 1728958472
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24