- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 1. Match Interface
- 2.Football Real-time Interface
- 3. 足球实时数据增强版
- 4.足球实时数据扩展包
- 5. 篮球实时接口
- 6. 篮球实时数据增强版
- 篮球实时数据扩展包
- 7. 板球实时接口
- 8.板球实时数据增强版
- 9. 小球实时接口
- 棒球
- 网球
- 排球
- 乒乓球
- 羽毛球
- 美式足球
- 斯诺克
- 英式橄榄球
- 迷你足球
- 沙滩排球
- 澳式橄榄球
- 冰球
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
排球技术统计
GET
/sport/api/v3/live/214/stats_extend
获取排球比赛的技术统计数据-自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的全量技术统计数据,比赛中各项关键数据统计。
更新数据:
方案1:有需求时请求指定比赛的技术统计数据:
方案2:接推送,接收实时有变化的数据(长链接推送/基础数据/比赛推送)
频率限制:30次/min
Request
Query Params
match_id
string
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 '/sport/api/v3/live/214/stats_extend?match_id=&page&per_page&language='
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {5}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 214,
"match_id": 503119,
"teams": [
{
"team_id": 201986,
"side": 1
},
{
"team_id": 201972,
"side": 2
}
],
"periods": [
{
"name": "all",
"categories": [
{
"name": "attacking",
"statistics": [
{
"name": "points won",
"home_value": 75,
"away_value": 52
},
{
"name": "service points won",
"home_value": 35,
"away_value": 13
},
{
"name": "receiver points won",
"home_value": 40,
"away_value": 39
},
{
"name": "aces",
"home_value": 6,
"away_value": 2
},
{
"name": "max points in a row",
"home_value": 7,
"away_value": 3
},
{
"name": "service errors",
"home_value": 15,
"away_value": 6
}
]
},
{
"name": "other",
"statistics": [
{
"name": "timeouts",
"home_value": 1,
"away_value": 6
}
]
}
]
},
{
"name": "1st",
"categories": [
{
"name": "attacking",
"statistics": [
{
"name": "points won",
"home_value": 25,
"away_value": 18
},
{
"name": "service points won",
"home_value": 10,
"away_value": 3
},
{
"name": "receiver points won",
"home_value": 15,
"away_value": 15
},
{
"name": "aces",
"home_value": 1,
"away_value": 1
},
{
"name": "max points in a row",
"home_value": 5,
"away_value": 3
},
{
"name": "service errors",
"home_value": 3,
"away_value": 3
}
]
},
{
"name": "other",
"statistics": [
{
"name": "timeouts",
"home_value": 0,
"away_value": 2
}
]
}
]
},
{
"name": "2nd",
"categories": [
{
"name": "attacking",
"statistics": [
{
"name": "points won",
"home_value": 25,
"away_value": 17
},
{
"name": "service points won",
"home_value": 12,
"away_value": 5
},
{
"name": "receiver points won",
"home_value": 13,
"away_value": 12
},
{
"name": "aces",
"home_value": 2,
"away_value": 0
},
{
"name": "max points in a row",
"home_value": 4,
"away_value": 3
},
{
"name": "service errors",
"home_value": 6,
"away_value": 2
}
]
},
{
"name": "other",
"statistics": [
{
"name": "timeouts",
"home_value": 0,
"away_value": 2
}
]
}
]
},
{
"name": "3rd",
"categories": [
{
"name": "attacking",
"statistics": [
{
"name": "points won",
"home_value": 25,
"away_value": 17
},
{
"name": "service points won",
"home_value": 13,
"away_value": 5
},
{
"name": "receiver points won",
"home_value": 12,
"away_value": 12
},
{
"name": "aces",
"home_value": 3,
"away_value": 1
},
{
"name": "max points in a row",
"home_value": 7,
"away_value": 3
},
{
"name": "service errors",
"home_value": 6,
"away_value": 1
}
]
},
{
"name": "other",
"statistics": [
{
"name": "timeouts",
"home_value": 1,
"away_value": 2
}
]
}
]
}
]
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24