- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
战队列表
GET
/esport/api/v3/base/list/team
获取游戏中的职业战队数据,根据自定义参数查询。
该接口返回所请求参数下的所有职业战队。
初始化:首次全量更新,根据游戏ID获取战队全量数据
更新数据:后续增量更新,根据参数recent_update获取增量变动数据
建议频率:1min/次
Request
Query Params
sport_id
string
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/team?sport_id&status&page&per_page&language&recent_update'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {18}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 1,
"team_id": 378,
"name": "GAM Esports",
"name_en": "GAM Esports",
"league_id": 0,
"abbr": "GAM",
"abbr_en": "GAM",
"logo": "/lol/team/ed8423d34bb814df18ac4f42a90e3eed.png",
"country_id": 11,
"status": "work",
"integral": 5,
"age": "21",
"begin_time": 1482076800,
"bonus": "384755",
"coach_id": "1234",
"vice_coach_id": "12365",
"region_id": 224,
"update_time": 1700464194
},
{
"sport_id": 1,
"team_id": 216,
"name": "Team Secret",
"name_en": "Team Secret",
"league_id": 0,
"abbr": "TS",
"abbr_en": "TS",
"logo": "/lol/team/e81ea5d11d4641a19fbe36a1ade6f01b.png",
"country_id": 12,
"status": "work",
"integral": 4,
"age": "21",
"begin_time": 1581523200,
"bonus": "27562",
"coach_id": "1234",
"vice_coach_id": "12365",
"region_id": 224,
"update_time": 1696777535
}
],
"total": 2
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24