- 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/219/result
获取英式橄榄球比赛的赛果数据-自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的全量赛果数据(请求限制:前后30天的赛程)
更新数据:
方案1:有需求时请求指定比赛的赛果数据:
方案2:接推送,接收实时有变化的数据(长链接推送/基础数据/比赛推送)
频率限制:30次/min
Request
Query Params
match_id
string
optional
Example:
547015
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/live/219/result?match_id=547015&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": [
{
"sport_id": 219,
"match_id": 501444,
"teams": [
{
"team_id": 200645,
"side": 1,
"win": 0,
"score": 4,
"stage_score": [
4,
0
]
},
{
"team_id": 201820,
"side": 2,
"win": 1,
"score": 50,
"stage_score": [
16,
34
]
}
],
"period_point": [
{
"period": "FT",
"home_score": 4,
"away_score": 50,
"incidents": [
{
"incident_type": "goal",
"home_point": 4,
"away_point": 50,
"reversed_time": 37,
"time": 2363,
"player": {
"player_id": 895404,
"name": "Arthur Mourgue"
},
"inPlayer": null,
"out_player": null,
"injury": 0
},
{
"incident_type": "goal",
"home_point": 4,
"away_point": 48,
"reversed_time": 105,
"time": 2295,
"player": {
"player_id": 900586,
"name": "Tom Davies"
},
"inPlayer": null,
"out_player": null,
"injury": 0
},
{
"incident_type": "goal",
"home_point": 4,
"away_point": 44,
"reversed_time": 238,
"time": 2162,
"player": {
"player_id": 900469,
"name": "Mikey Lewis"
},
"inPlayer": {
"player_id": 0,
"name": ""
},
"out_player": null,
"injury": 0
},
{
"incident_type": "goal",
"home_point": 4,
"away_point": 20,
"reversed_time": 1775,
"time": 625,
"player": {
"player_id": 900620,
"name": "Jai Whitbread"
},
"inPlayer": null,
"out_player": null,
"injury": 0
}
]
},
{
"period": "HT",
"home_score": 4,
"away_score": 16,
"incidents": [
{
"incident_type": "goal",
"home_point": 0,
"away_point": 0,
"reversed_time": 408,
"time": 1992,
"player": null,
"inPlayer": {
"player_id": 900624,
"name": "Sam Luckley"
},
"out_player": {
"player_id": 900570,
"name": "Jared Waerea-Hargreaves"
},
"injury": 0
},
{
"incident_type": "goal",
"home_point": 0,
"away_point": 4,
"reversed_time": 2077,
"time": 323,
"player": {
"player_id": 895404,
"name": "Arthur Mourgue"
},
"inPlayer": null,
"out_player": null,
"injury": 0
}
]
}
],
"update_time": 2323353611
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24