- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 前瞻分析
- 球队统计
- 选手统计
- 赛事晋级图
- 赛事积分榜
- 赛事统计
- 高阶数据
- 历史数 据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
篮球球队统计
GET
/sport/api/v3/stats/201/team
获取篮球队伍各项统计数据,自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的队伍统计数据
更新数据:有需要时请求接口,更新数据。
频率建议:1天/次
Request
Query Params
year
integer
required
Example:
2024
team_id
integer
required
Example:
3034
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/stats/201/team?year=2024&team_id=3034'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {3}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"team_id": 3174,
"stats_items": [
{
"year": "2023",
"team_stats": [
{
"series_id": 10880,
"matches": 30,
"point": 8024,
"conceded": 7751,
"assist": 1987,
"ast": 2.2,
"goals_rate": 3000,
"field_goals_scored": 6176,
"field_goals_total": 0.486,
"three_points_scored": 869,
"three_points_accuracy": 2362,
"three_points_total": 36.8,
"free_throws_scored": 1155,
"free_throws_total": 1438,
"free_throws_accuracy": 0.7,
"effective_goal_scored": 0.56,
"true_goal_scored": 0.6,
"point_paint": 2924,
"point_second": 788,
"point_bench": 1162,
"point_fast": 852,
"offensive_rebounds": 752,
"defensive_rebounds": 2211,
"blocks": 2963,
"steals": 274,
"three_points_accuracy_allowed": 552,
"field_goals_scored_allowed": 0.37,
"charges_drawn": 0.47,
"turnovers": 93,
"fouls": 838,
"fouls_drawn": 1176,
"technical_fouls": 1308,
"flagrant_fouls": 23
}
],
"matches": [
2596885,
2605483,
2596226,
2740486,
2738517,
2735637,
2745798
]
}
],
"update_time": 1728958472
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24