- Quick Start
- API指南
- API Documentation
- Score of Sports
- Basic Data
- Real-time Data
- 指数数据
- 统计数据
- 高阶数据
- 历史数据
- 比赛对应接口
- 长链接推送
- Basic Data
- 电竞比分
- 体彩数据
- 媒体数据
- 动画直播
- 常见问题
- 更新日志
板球文字直播接口
GET
/sport/api/v3/live/210/tlive
获取板球比赛的文字直播数据-自定义参数查询(不同项目的路径不同)
该接口返回所请求参数的全量文字直播数据(请求限制:前后30天的赛程)
更新数据:
方案1:有需求时请求指定比赛的文字直播数据:
方案2:接推送,接收实时有变化的数据(长链接推送/实时赛果数据推送/文字直播推送)
频率限制:30次/min
Request
Query Params
match_id
string
optional
Example:
580252
page
integer
optional
per_page
integer
optional
recent_update
string
optional
language
string
optional
Example:
zh
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/210/tlive?match_id=580252&page&per_page&recent_update&language=zh'
Responses
🟢200成功
application/json
Body
code
integer
错误码
data
object
required
list
array [object {4}]
required
total
integer
总条数
msg
string
接口响应信息
Example
{
"code": 0,
"data": {
"list": [
{
"sport_id": 210,
"match_id": 3090452,
"text_live": [
{
"team_id": 0,
"over": 4,
"ball_no": "",
"value": "",
"header_text": "",
"content": "Over 4. 5 runs. Bowler: Dwane Walcott. Score: 29/2",
"total_runs": 0,
"total_wickets": 0
},
{
"team_id": 108173,
"over": 4,
"ball_no": "",
"value": "",
"header_text": "Dwane Walcott to Heron Campbell",
"content": "",
"total_runs": 29,
"total_wickets": 2
},
{
"team_id": 108173,
"over": 14,
"ball_no": "3.4",
"value": "W",
"header_text": "Dwane Walcott to Micah Narine",
"content": "OUT! c Seandell Regis b Dwane Walcott.<br><b>Micah Narine c S Regis b D Walcott 11 (7b 2x4 0x6)</b>",
"total_runs": 0,
"total_wickets": 0
}
],
"update_time": 1734333653
}
],
"total": 1
},
"msg": "success"
}
Modified at 2025-06-18 09:43:24