1. 基础数据
1.1. 国家列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─countryId |
int32 |
国家 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体中文 |
- |
└─classify |
int32 |
1足球,2篮球,3电竞,4网球,5排球,6棒球,7板球,8手球,9橄榄球,10曲棍球,11赛车,12赛马,13拳击 |
- |
└─type |
int32 |
1国际赛事、2欧洲赛事、 3美洲赛事、4亚洲赛事、5大洋洲赛事、6非洲赛事 |
- |
└─code |
string |
编号 |
- |
└─sort |
int32 |
排序 |
- |
└─image |
string |
logo |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"countryId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"classify": 0,
"type": 0,
"code": "",
"sort": 0,
"image": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/countryList?languageId=zh
1.2. 联赛列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─countryId |
string |
国家名称 |
- |
└─season |
string |
当前赛季 |
- |
└─dateStart |
string |
开始时间 |
- |
└─dateEnd |
string |
结束时间 |
- |
└─isCup |
int32 |
赛事类型;联赛0,杯赛1 |
- |
└─liveLineups |
int32 |
是否有阵容 |
- |
└─liveStats |
int32 |
是否有球员统计 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"countryId": "",
"season": "",
"dateStart": "",
"dateEnd": "",
"isCup": 0,
"liveLineups": 0,
"liveStats": 0,
"image": "",
"color": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/leaguePage?languageId=zh¤t=1&size=100
1.3. 赛季列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─seasonId |
int32 |
赛季 |
- |
└─leagueId |
int32 |
赛事 |
- |
└─name |
string |
赛季 |
- |
└─standings |
int32 |
积分榜0无,1有 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"seasonId": 0,
"leagueId": 0,
"name": "",
"standings": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/seasonPage?languageId=zh¤t=1&size=100
1.4. 阶段列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─stageId |
int32 |
联赛阶段 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─round |
string |
群组 |
- |
└─leagueId |
int32 |
No comments found. |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"stageId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"round": "",
"leagueId": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/stagePage?languageId=zh¤t=1&size=100
1.5. 球队列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─teamId |
int32 |
球队id |
- |
└─type |
int32 |
类型0俱乐部,1国家队 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─countryId |
string |
国家 |
- |
└─founded |
string |
成立时间 |
- |
└─venueId |
int32 |
球场 |
- |
└─image |
string |
球队logo |
- |
└─coachId |
int32 |
教练 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"teamId": 0,
"type": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"countryId": "",
"founded": "",
"venueId": 0,
"image": "",
"coachId": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/teamPage?languageId=zh¤t=1&size=100
1.6. 球员列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─number |
string |
号码 |
- |
└─age |
string |
年龄 |
- |
└─position |
int32 |
位置,0位置,1守门员,2后卫,3中场,4前锋 |
- |
└─countryId |
string |
国籍 |
- |
└─birthDate |
string |
生日 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
高 |
- |
└─weight |
string |
体重 |
- |
└─preferredFoot |
int32 |
首选脚,0未知,1左脚,2右脚 |
- |
└─marketValueEur |
string |
市值欧元 |
- |
└─image |
string |
头像 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"number": "",
"age": "",
"position": 0,
"countryId": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"preferredFoot": 0,
"marketValueEur": "",
"image": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/playerPage?languageId=zh¤t=1&size=100
1.7. 教练列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/coachPage?languageId=zh¤t=1&size=100
1.8. 裁判列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/refereePage?languageId=zh¤t=1&size=100
1.9. 场馆列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/venuePage?languageId=zh¤t=1&size=100
1.10. 球队更新列表-当天
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每小时更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
date |
|
string |
false |
日期 2008-08-08 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─teamId |
int32 |
球队id |
- |
└─updateTime |
string |
更新时间 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"teamId": 0,
"updateTime": "yyyy-MM-dd HH:mm:ss"
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/teamUpdateList?languageId=zh&date=2023-08-01
1.11. 球员更新列表-当天
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每小时更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
date |
|
string |
false |
日期 2008-08-08 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─playerId |
int32 |
球员id |
- |
└─updateTime |
string |
更新时间 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"playerId": 0,
"updateTime": "yyyy-MM-dd HH:mm:ss"
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/playerUpdateList?languageId=zh&date=2023-08-01
1.12. 教练更新列表-当天
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每小时更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
date |
|
string |
false |
日期 2008-08-08 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─coachId |
int32 |
教练id |
- |
└─updateTime |
string |
更新时间 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"coachId": 0,
"updateTime": "yyyy-MM-dd HH:mm:ss"
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/base/coachUpdateList?languageId=zh&date=2023-08-01
2. 实时数据
2.1. 比赛-即时比分
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每秒更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─time |
int32 |
比赛时间,时间戳秒 |
- |
└─status |
int32 |
状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─leagueId |
int32 |
联赛id |
- |
└─seasonId |
int32 |
赛季 |
- |
└─stageId |
int32 |
赛季 |
- |
└─venueId |
int32 |
球场 |
- |
└─matchId |
int32 |
比赛id |
- |
└─groupId |
string |
组 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─beidan |
int32 |
是否有北单,0无,1有主客一致,2有主客相反 |
- |
└─lottery |
int32 |
是否有竞彩,0无,1有主客一致,2有主客相反 |
- |
└─animation |
int32 |
是否有动画 |
- |
└─stream |
int32 |
是否有直播 |
- |
└─odds |
int32 |
是否有指数,0无,1有 |
- |
└─injuries |
int32 |
是否有情报,0无,1有 |
- |
└─lineup |
int32 |
是否有阵容,0无,1有 |
- |
└─sort |
int32 |
排序 |
- |
└─stats |
object |
统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─event |
object |
事件信息 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补 |
- |
└─teamId |
int32 |
球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─league |
object |
联赛信息 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
└─sort |
int32 |
排序 |
- |
└─home |
object |
主队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─away |
object |
客队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─weather |
object |
天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─turnBased |
string |
回合制 |
- |
└─extra |
object |
其他信息 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"time": 0,
"status": 0,
"leagueId": 0,
"seasonId": 0,
"stageId": 0,
"venueId": 0,
"matchId": 0,
"groupId": "",
"refereeId": 0,
"homeScore": "",
"awayScore": "",
"homeId": 0,
"awayId": 0,
"beidan": 0,
"lottery": 0,
"animation": 0,
"stream": 0,
"odds": 0,
"injuries": 0,
"lineup": 0,
"sort": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"teamId": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"result": "",
"resultEn": "",
"assistId": 0
}
],
"updateTime": 0
},
"league": {
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"color": "",
"sort": 0
},
"home": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"away": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"turnBased": "",
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/live?languageId=zh
2.2. 比赛-赛程赛果
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
date |
|
string |
true |
日期2023-06-01 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─time |
int32 |
比赛时间,时间戳秒 |
- |
└─status |
int32 |
状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─leagueId |
int32 |
联赛id |
- |
└─seasonId |
int32 |
赛季 |
- |
└─stageId |
int32 |
赛季 |
- |
└─venueId |
int32 |
球场 |
- |
└─matchId |
int32 |
比赛id |
- |
└─groupId |
string |
组 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─beidan |
int32 |
是否有北单,0无,1有主客一致,2有主客相反 |
- |
└─lottery |
int32 |
是否有竞彩,0无,1有主客一致,2有主客相反 |
- |
└─animation |
int32 |
是否有动画 |
- |
└─stream |
int32 |
是否有直播 |
- |
└─odds |
int32 |
是否有指数,0无,1有 |
- |
└─injuries |
int32 |
是否有情报,0无,1有 |
- |
└─lineup |
int32 |
是否有阵容,0无,1有 |
- |
└─sort |
int32 |
排序 |
- |
└─stats |
object |
统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─event |
object |
事件信息 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补 |
- |
└─teamId |
int32 |
球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─league |
object |
联赛信息 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
└─sort |
int32 |
排序 |
- |
└─home |
object |
主队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─away |
object |
客队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─weather |
object |
天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─turnBased |
string |
回合制 |
- |
└─extra |
object |
其他信息 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"time": 0,
"status": 0,
"leagueId": 0,
"seasonId": 0,
"stageId": 0,
"venueId": 0,
"matchId": 0,
"groupId": "",
"refereeId": 0,
"homeScore": "",
"awayScore": "",
"homeId": 0,
"awayId": 0,
"beidan": 0,
"lottery": 0,
"animation": 0,
"stream": 0,
"odds": 0,
"injuries": 0,
"lineup": 0,
"sort": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"teamId": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"result": "",
"resultEn": "",
"assistId": 0
}
],
"updateTime": 0
},
"league": {
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"color": "",
"sort": 0
},
"home": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"away": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"turnBased": "",
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/matchList?languageId=zh&date=2023-08-01
2.3. 赛季-比赛
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
leagueId |
int32 |
true |
联赛id |
||
seasonId |
int32 |
true |
赛季id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─time |
int32 |
比赛时间,时间戳秒 |
- |
└─status |
int32 |
状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─leagueId |
int32 |
联赛id |
- |
└─seasonId |
int32 |
赛季 |
- |
└─stageId |
int32 |
赛季 |
- |
└─venueId |
int32 |
球场 |
- |
└─matchId |
int32 |
比赛id |
- |
└─groupId |
string |
组 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─beidan |
int32 |
是否有北单,0无,1有主客一致,2有主客相反 |
- |
└─lottery |
int32 |
是否有竞彩,0无,1有主客一致,2有主客相反 |
- |
└─animation |
int32 |
是否有动画 |
- |
└─stream |
int32 |
是否有直播 |
- |
└─odds |
int32 |
是否有指数,0无,1有 |
- |
└─injuries |
int32 |
是否有情报,0无,1有 |
- |
└─lineup |
int32 |
是否有阵容,0无,1有 |
- |
└─sort |
int32 |
排序 |
- |
└─stats |
object |
统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─event |
object |
事件信息 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补 |
- |
└─teamId |
int32 |
球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─league |
object |
联赛信息 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
└─sort |
int32 |
排序 |
- |
└─home |
object |
主队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─away |
object |
客队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─weather |
object |
天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─turnBased |
string |
回合制 |
- |
└─extra |
object |
其他信息 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"time": 0,
"status": 0,
"leagueId": 0,
"seasonId": 0,
"stageId": 0,
"venueId": 0,
"matchId": 0,
"groupId": "",
"refereeId": 0,
"homeScore": "",
"awayScore": "",
"homeId": 0,
"awayId": 0,
"beidan": 0,
"lottery": 0,
"animation": 0,
"stream": 0,
"odds": 0,
"injuries": 0,
"lineup": 0,
"sort": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"teamId": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"result": "",
"resultEn": "",
"assistId": 0
}
],
"updateTime": 0
},
"league": {
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"color": "",
"sort": 0
},
"home": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"away": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"turnBased": "",
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/matchSeason?languageId=zh&leagueId=0&seasonId=0
2.4. 比赛-统计列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每秒更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─matchId |
int32 |
比赛id |
- |
└─status |
int32 |
比赛状态 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0,
"matchId": 0,
"status": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/statsList?languageId=zh
2.5. 比赛-阵容列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每小时更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int32 |
比赛 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─status |
int32 |
比赛状态 |
- |
└─lineup |
object |
阵容 |
- |
└─homeFormation |
string |
主队阵容 |
- |
└─awayFormation |
string |
客队阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─substitute |
object |
替补阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─homeInjury |
array |
主队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─awayInjury |
array |
客队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"status": 0,
"lineup": {
"homeFormation": "",
"awayFormation": "",
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"substitute": {
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"updateTime": 0,
"homeInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
],
"awayInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
]
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/lineupList?languageId=zh
2.6. 比赛-事件列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每秒更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
足球类型:1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补,6点球,7角球,8乌龙,11助攻,12越位,13射正,14射偏,15点球不进,21上半场,22,中场,23下半场,24加时,30VAR |
- |
└─team |
int32 |
球队 0全场,1主队,2客队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─seconds |
string |
秒 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─updateTime |
int64 |
更新时间 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"eventList": [
{
"type": 0,
"team": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"seconds": "",
"result": "",
"resultEn": "",
"assistId": 0,
"teamId": 0
}
],
"updateTime": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/eventList?languageId=zh
2.7. 比赛-事件统计
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每秒更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
比赛ID |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─attacks |
object |
进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─dangerousAttacks |
object |
危险进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─possession |
object |
控球率 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─offTarget |
object |
射偏 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─onTarget |
object |
射正 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─corners |
object |
角球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─goals |
object |
进球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─yellowCards |
object |
黄牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─redCards |
object |
红牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─substitutions |
object |
替补 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"attacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"dangerousAttacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"possession": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"offTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"onTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"corners": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"goals": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"yellowCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"redCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"substitutions": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/eventStats?languageId=zh&matchId=0
2.8. 比赛-情报
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 根据比赛id获取
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
false |
比赛ID |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─home |
object |
主队 |
- |
└─miss |
array |
伤停 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
待定 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─away |
object |
客队 |
- |
└─miss |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─status |
int32 |
比赛状态 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"home": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"away": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"status": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/injuriesList?languageId=zh&matchId=0
2.9. 比赛-文字直播
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每秒更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int32 |
比赛id |
- |
└─id |
string |
id |
- |
└─minute |
string |
分钟 |
- |
└─contentEn |
string |
英文内容 |
- |
└─content |
string |
内容 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"id": "",
"minute": "",
"contentEn": "",
"content": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/textList?languageId=zh
2.10. 比赛-文字直播-按比赛
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 比赛-文字直播-按比赛
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
比赛id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int32 |
比赛id |
- |
└─id |
string |
id |
- |
└─minute |
string |
分钟 |
- |
└─contentEn |
string |
英文内容 |
- |
└─content |
string |
内容 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"id": "",
"minute": "",
"contentEn": "",
"content": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/text?languageId=zh&matchId=0
2.11. 比赛-动画直播
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 比赛-动画直播
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
比赛id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/change/animation?languageId=zh&matchId=0
3. 统计数据
3.1. 联赛-积分
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每小时更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
leagueId |
int32 |
true |
联赛ID |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─season |
string |
赛季 |
- |
└─round |
string |
轮次 |
- |
└─stageId |
int32 |
阶段id |
- |
└─typeNameS |
string |
升降级说明 逗号隔开 |
- |
└─totalList |
array |
总积分榜 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─homeList |
array |
主场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─awayList |
array |
客场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─halfList |
array |
半场总积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─homeHalfList |
array |
半场主场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─awayHalfList |
array |
半场客场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"season": "",
"round": "",
"stageId": 0,
"typeNameS": "",
"totalList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"homeList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"awayList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"halfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"homeHalfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"awayHalfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/standings?languageId=zh&leagueId=0
3.2. 联赛-最佳球队、最佳球员
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
leagueId |
int32 |
true |
联赛ID |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─teamStats |
object |
球队统计 |
- |
└─totalList |
array |
总排名 |
- |
└─teamId |
string |
球队id |
- |
└─schSum |
string |
场次 |
- |
└─shots |
string |
射门 |
- |
└─target |
string |
射正 |
- |
└─offTarget |
string |
射偏 |
- |
└─passBall |
string |
传球 |
- |
└─passBallSuc |
string |
传球成功 |
- |
└─dribbles |
string |
过人 |
- |
└─red |
string |
红牌 |
- |
└─yellow |
string |
黄牌 |
- |
└─shotSed |
string |
被射门 |
- |
└─fouls |
string |
犯规 |
- |
└─corner |
string |
角球 |
- |
└─offside |
string |
越位 |
- |
└─header |
string |
头球 |
- |
└─headerSuc |
string |
头球成功 |
- |
└─save |
string |
扑救 |
- |
└─blocked |
string |
封堵 |
- |
└─tackle |
string |
铲断 |
- |
└─throwIns |
string |
边线球 |
- |
└─goal |
string |
进球 |
- |
└─fumble |
string |
失球 |
- |
└─avgControl |
string |
控球率 |
- |
└─homeList |
array |
主场排名 |
- |
└─teamId |
string |
球队id |
- |
└─schSum |
string |
场次 |
- |
└─shots |
string |
射门 |
- |
└─target |
string |
射正 |
- |
└─offTarget |
string |
射偏 |
- |
└─passBall |
string |
传球 |
- |
└─passBallSuc |
string |
传球成功 |
- |
└─dribbles |
string |
过人 |
- |
└─red |
string |
红牌 |
- |
└─yellow |
string |
黄牌 |
- |
└─shotSed |
string |
被射门 |
- |
└─fouls |
string |
犯规 |
- |
└─corner |
string |
角球 |
- |
└─offside |
string |
越位 |
- |
└─header |
string |
头球 |
- |
└─headerSuc |
string |
头球成功 |
- |
└─save |
string |
扑救 |
- |
└─blocked |
string |
封堵 |
- |
└─tackle |
string |
铲断 |
- |
└─throwIns |
string |
边线球 |
- |
└─goal |
string |
进球 |
- |
└─fumble |
string |
失球 |
- |
└─avgControl |
string |
控球率 |
- |
└─awayList |
array |
客场排名 |
- |
└─teamId |
string |
球队id |
- |
└─schSum |
string |
场次 |
- |
└─shots |
string |
射门 |
- |
└─target |
string |
射正 |
- |
└─offTarget |
string |
射偏 |
- |
└─passBall |
string |
传球 |
- |
└─passBallSuc |
string |
传球成功 |
- |
└─dribbles |
string |
过人 |
- |
└─red |
string |
红牌 |
- |
└─yellow |
string |
黄牌 |
- |
└─shotSed |
string |
被射门 |
- |
└─fouls |
string |
犯规 |
- |
└─corner |
string |
角球 |
- |
└─offside |
string |
越位 |
- |
└─header |
string |
头球 |
- |
└─headerSuc |
string |
头球成功 |
- |
└─save |
string |
扑救 |
- |
└─blocked |
string |
封堵 |
- |
└─tackle |
string |
铲断 |
- |
└─throwIns |
string |
边线球 |
- |
└─goal |
string |
进球 |
- |
└─fumble |
string |
失球 |
- |
└─avgControl |
string |
控球率 |
- |
└─playerStats |
object |
球员统计 |
- |
└─totalList |
array |
总排名 |
- |
└─id |
string |
球员id |
- |
└─sS |
string |
出场次数schSum |
- |
└─bS |
string |
替补次数backSum |
- |
└─pT |
string |
出场时间playingTime |
- |
└─nPG |
string |
点球未射中notPenaltyGoals |
- |
└─pG |
string |
点球penaltyGoals |
- |
└─s |
string |
射门shots |
- |
└─sT |
string |
射正shotsTarget |
- |
└─wF |
string |
被犯规wasFouled |
- |
└─bSum |
string |
最佳bestSum |
- |
└─r |
string |
评分rating |
- |
└─eR |
string |
得分率 effRating |
- |
└─p |
string |
总传球pass |
- |
└─pS |
string |
传球成功passSuc |
- |
└─kP |
string |
关键传球keyPass |
- |
└─a |
string |
助攻assist |
- |
└─lB |
string |
长传longBalls |
- |
└─lBS |
string |
精准长传longBallsSuc |
- |
└─tB |
string |
直塞throughBall |
- |
└─tBS |
string |
精准直塞throughBallSuc |
- |
└─c |
string |
传中cross |
- |
└─cS |
string |
传中成功crossSuc |
- |
└─dS |
string |
带球摆脱dribblesSuc |
- |
└─o |
string |
越位offside |
- |
└─t |
string |
铲断tackle |
- |
└─i |
string |
拦截interception |
- |
└─cl |
string |
解围clearance |
- |
└─clS |
string |
解围有效clearanceSuc |
- |
└─oP |
string |
制造越位offsideProvoked |
- |
└─dd |
string |
偷球dispossessed |
- |
└─sB |
string |
封堵shotsBlocked |
- |
└─aS |
string |
争顶成功aerialSuc |
- |
└─f |
string |
犯规foul |
- |
└─red |
string |
红牌red |
- |
└─y |
string |
黄牌yellow |
- |
└─oG |
string |
乌龙球ownGoal |
- |
└─th |
string |
控球touch |
- |
└─tO |
string |
失误turnOver |
- |
└─pP |
string |
导致罚球penaltyProvoked |
- |
└─sOP |
string |
击中门柱shotsOnPost |
- |
└─g |
string |
进球goals |
- |
└─pSP |
string |
传球成功率passSucPercent |
- |
└─aM |
string |
分钟/助攻assistMinute |
- |
└─gM |
string |
分钟/球goalMinute |
- |
└─gP |
string |
入球转化率goalPercent |
- |
└─homeList |
array |
主场排名 |
- |
└─id |
string |
球员id |
- |
└─sS |
string |
出场次数schSum |
- |
└─bS |
string |
替补次数backSum |
- |
└─pT |
string |
出场时间playingTime |
- |
└─nPG |
string |
点球未射中notPenaltyGoals |
- |
└─pG |
string |
点球penaltyGoals |
- |
└─s |
string |
射门shots |
- |
└─sT |
string |
射正shotsTarget |
- |
└─wF |
string |
被犯规wasFouled |
- |
└─bSum |
string |
最佳bestSum |
- |
└─r |
string |
评分rating |
- |
└─eR |
string |
得分率 effRating |
- |
└─p |
string |
总传球pass |
- |
└─pS |
string |
传球成功passSuc |
- |
└─kP |
string |
关键传球keyPass |
- |
└─a |
string |
助攻assist |
- |
└─lB |
string |
长传longBalls |
- |
└─lBS |
string |
精准长传longBallsSuc |
- |
└─tB |
string |
直塞throughBall |
- |
└─tBS |
string |
精准直塞throughBallSuc |
- |
└─c |
string |
传中cross |
- |
└─cS |
string |
传中成功crossSuc |
- |
└─dS |
string |
带球摆脱dribblesSuc |
- |
└─o |
string |
越位offside |
- |
└─t |
string |
铲断tackle |
- |
└─i |
string |
拦截interception |
- |
└─cl |
string |
解围clearance |
- |
└─clS |
string |
解围有效clearanceSuc |
- |
└─oP |
string |
制造越位offsideProvoked |
- |
└─dd |
string |
偷球dispossessed |
- |
└─sB |
string |
封堵shotsBlocked |
- |
└─aS |
string |
争顶成功aerialSuc |
- |
└─f |
string |
犯规foul |
- |
└─red |
string |
红牌red |
- |
└─y |
string |
黄牌yellow |
- |
└─oG |
string |
乌龙球ownGoal |
- |
└─th |
string |
控球touch |
- |
└─tO |
string |
失误turnOver |
- |
└─pP |
string |
导致罚球penaltyProvoked |
- |
└─sOP |
string |
击中门柱shotsOnPost |
- |
└─g |
string |
进球goals |
- |
└─pSP |
string |
传球成功率passSucPercent |
- |
└─aM |
string |
分钟/助攻assistMinute |
- |
└─gM |
string |
分钟/球goalMinute |
- |
└─gP |
string |
入球转化率goalPercent |
- |
└─awayList |
array |
客场排名 |
- |
└─id |
string |
球员id |
- |
└─sS |
string |
出场次数schSum |
- |
└─bS |
string |
替补次数backSum |
- |
└─pT |
string |
出场时间playingTime |
- |
└─nPG |
string |
点球未射中notPenaltyGoals |
- |
└─pG |
string |
点球penaltyGoals |
- |
└─s |
string |
射门shots |
- |
└─sT |
string |
射正shotsTarget |
- |
└─wF |
string |
被犯规wasFouled |
- |
└─bSum |
string |
最佳bestSum |
- |
└─r |
string |
评分rating |
- |
└─eR |
string |
得分率 effRating |
- |
└─p |
string |
总传球pass |
- |
└─pS |
string |
传球成功passSuc |
- |
└─kP |
string |
关键传球keyPass |
- |
└─a |
string |
助攻assist |
- |
└─lB |
string |
长传longBalls |
- |
└─lBS |
string |
精准长传longBallsSuc |
- |
└─tB |
string |
直塞throughBall |
- |
└─tBS |
string |
精准直塞throughBallSuc |
- |
└─c |
string |
传中cross |
- |
└─cS |
string |
传中成功crossSuc |
- |
└─dS |
string |
带球摆脱dribblesSuc |
- |
└─o |
string |
越位offside |
- |
└─t |
string |
铲断tackle |
- |
└─i |
string |
拦截interception |
- |
└─cl |
string |
解围clearance |
- |
└─clS |
string |
解围有效clearanceSuc |
- |
└─oP |
string |
制造越位offsideProvoked |
- |
└─dd |
string |
偷球dispossessed |
- |
└─sB |
string |
封堵shotsBlocked |
- |
└─aS |
string |
争顶成功aerialSuc |
- |
└─f |
string |
犯规foul |
- |
└─red |
string |
红牌red |
- |
└─y |
string |
黄牌yellow |
- |
└─oG |
string |
乌龙球ownGoal |
- |
└─th |
string |
控球touch |
- |
└─tO |
string |
失误turnOver |
- |
└─pP |
string |
导致罚球penaltyProvoked |
- |
└─sOP |
string |
击中门柱shotsOnPost |
- |
└─g |
string |
进球goals |
- |
└─pSP |
string |
传球成功率passSucPercent |
- |
└─aM |
string |
分钟/助攻assistMinute |
- |
└─gM |
string |
分钟/球goalMinute |
- |
└─gP |
string |
入球转化率goalPercent |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"teamStats": {
"totalList": [
{
"teamId": "",
"schSum": "",
"shots": "",
"target": "",
"offTarget": "",
"passBall": "",
"passBallSuc": "",
"dribbles": "",
"red": "",
"yellow": "",
"shotSed": "",
"fouls": "",
"corner": "",
"offside": "",
"header": "",
"headerSuc": "",
"save": "",
"blocked": "",
"tackle": "",
"throwIns": "",
"goal": "",
"fumble": "",
"avgControl": ""
}
],
"homeList": [
{
"teamId": "",
"schSum": "",
"shots": "",
"target": "",
"offTarget": "",
"passBall": "",
"passBallSuc": "",
"dribbles": "",
"red": "",
"yellow": "",
"shotSed": "",
"fouls": "",
"corner": "",
"offside": "",
"header": "",
"headerSuc": "",
"save": "",
"blocked": "",
"tackle": "",
"throwIns": "",
"goal": "",
"fumble": "",
"avgControl": ""
}
],
"awayList": [
{
"teamId": "",
"schSum": "",
"shots": "",
"target": "",
"offTarget": "",
"passBall": "",
"passBallSuc": "",
"dribbles": "",
"red": "",
"yellow": "",
"shotSed": "",
"fouls": "",
"corner": "",
"offside": "",
"header": "",
"headerSuc": "",
"save": "",
"blocked": "",
"tackle": "",
"throwIns": "",
"goal": "",
"fumble": "",
"avgControl": ""
}
]
},
"playerStats": {
"totalList": [
{
"id": "",
"sS": "",
"bS": "",
"pT": "",
"nPG": "",
"pG": "",
"s": "",
"sT": "",
"wF": "",
"bSum": "",
"r": "",
"eR": "",
"p": "",
"pS": "",
"kP": "",
"a": "",
"lB": "",
"lBS": "",
"tB": "",
"tBS": "",
"c": "",
"cS": "",
"dS": "",
"o": "",
"t": "",
"i": "",
"cl": "",
"clS": "",
"oP": "",
"dd": "",
"sB": "",
"aS": "",
"f": "",
"red": "",
"y": "",
"oG": "",
"th": "",
"tO": "",
"pP": "",
"sOP": "",
"g": "",
"pSP": "",
"aM": "",
"gM": "",
"gP": ""
}
],
"homeList": [
{
"id": "",
"sS": "",
"bS": "",
"pT": "",
"nPG": "",
"pG": "",
"s": "",
"sT": "",
"wF": "",
"bSum": "",
"r": "",
"eR": "",
"p": "",
"pS": "",
"kP": "",
"a": "",
"lB": "",
"lBS": "",
"tB": "",
"tBS": "",
"c": "",
"cS": "",
"dS": "",
"o": "",
"t": "",
"i": "",
"cl": "",
"clS": "",
"oP": "",
"dd": "",
"sB": "",
"aS": "",
"f": "",
"red": "",
"y": "",
"oG": "",
"th": "",
"tO": "",
"pP": "",
"sOP": "",
"g": "",
"pSP": "",
"aM": "",
"gM": "",
"gP": ""
}
],
"awayList": [
{
"id": "",
"sS": "",
"bS": "",
"pT": "",
"nPG": "",
"pG": "",
"s": "",
"sT": "",
"wF": "",
"bSum": "",
"r": "",
"eR": "",
"p": "",
"pS": "",
"kP": "",
"a": "",
"lB": "",
"lBS": "",
"tB": "",
"tBS": "",
"c": "",
"cS": "",
"dS": "",
"o": "",
"t": "",
"i": "",
"cl": "",
"clS": "",
"oP": "",
"dd": "",
"sB": "",
"aS": "",
"f": "",
"red": "",
"y": "",
"oG": "",
"th": "",
"tO": "",
"pP": "",
"sOP": "",
"g": "",
"pSP": "",
"aM": "",
"gM": "",
"gP": ""
}
]
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/leagueBest?languageId=zh&leagueId=0
3.3. 球队-球队统计、球员统计、联赛统计、荣誉、转会、伤病/停赛历史
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
teamId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─transferList |
array |
转会 |
- |
└─transferId |
int32 |
转会记录 |
- |
└─dateIn |
string |
转入日期 |
- |
└─dateOut |
string |
转出日期 |
- |
└─teamInId |
int32 |
转入球队 |
- |
└─teamOutId |
int32 |
转出球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─type |
int32 |
转会类型 1完全所有 2租借 3自由转会 4租借结束 5共同所有 |
- |
└─position |
string |
描述 |
- |
└─linedList |
array |
伤病/停赛历史 |
- |
└─description |
string |
描述 |
- |
└─startDate |
string |
开始日期 |
- |
└─endDate |
string |
结束日期 |
- |
└─id |
int32 |
球员ID |
- |
└─trophyList |
array |
荣誉 |
- |
└─line |
object |
阵容 |
- |
└─rearguard |
array |
后卫 |
- |
└─i |
int32 |
球员id |
- |
└─n |
string |
球员号码 |
- |
└─vanguard |
array |
前锋 |
- |
└─i |
int32 |
球员id |
- |
└─n |
string |
球员号码 |
- |
└─goalkeeper |
array |
守门员 |
- |
└─i |
int32 |
球员id |
- |
└─n |
string |
球员号码 |
- |
└─midfielder |
array |
中场 |
- |
└─i |
int32 |
球员id |
- |
└─n |
string |
球员号码 |
- |
└─info |
object |
基本信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─type |
int32 |
类型0俱乐部,1国家队 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─countryId |
string |
国家 |
- |
└─founded |
string |
成立时间 |
- |
└─venueId |
int32 |
球场 |
- |
└─image |
string |
球队logo |
- |
└─coachId |
int32 |
教练 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"transferList": [
{
"transferId": 0,
"dateIn": "",
"dateOut": "",
"teamInId": 0,
"teamOutId": 0,
"playerId": 0,
"type": 0,
"position": ""
}
],
"linedList": [
{
"description": "",
"startDate": "",
"endDate": "",
"id": 0
}
],
"trophyList": [
""
],
"line": {
"rearguard": [
{
"i": 0,
"n": ""
}
],
"vanguard": [
{
"i": 0,
"n": ""
}
],
"goalkeeper": [
{
"i": 0,
"n": ""
}
],
"midfielder": [
{
"i": 0,
"n": ""
}
]
},
"info": {
"teamId": 0,
"type": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"countryId": "",
"founded": "",
"venueId": 0,
"image": "",
"coachId": 0
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/team?languageId=zh&teamId=0
3.4. 球员-比赛统计、荣誉、转会、伤病/停赛历史
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
playerId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─statsList |
array |
比赛统计(从2014年开始) |
- |
└─id |
string |
球员id |
- |
└─sS |
string |
出场次数schSum |
- |
└─bS |
string |
替补次数backSum |
- |
└─pT |
string |
出场时间playingTime |
- |
└─nPG |
string |
点球未射中notPenaltyGoals |
- |
└─pG |
string |
点球penaltyGoals |
- |
└─s |
string |
射门shots |
- |
└─sT |
string |
射正shotsTarget |
- |
└─wF |
string |
被犯规wasFouled |
- |
└─bSum |
string |
最佳bestSum |
- |
└─r |
string |
评分rating |
- |
└─eR |
string |
得分率 effRating |
- |
└─p |
string |
总传球pass |
- |
└─pS |
string |
传球成功passSuc |
- |
└─kP |
string |
关键传球keyPass |
- |
└─a |
string |
助攻assist |
- |
└─lB |
string |
长传longBalls |
- |
└─lBS |
string |
精准长传longBallsSuc |
- |
└─tB |
string |
直塞throughBall |
- |
└─tBS |
string |
精准直塞throughBallSuc |
- |
└─c |
string |
传中cross |
- |
└─cS |
string |
传中成功crossSuc |
- |
└─dS |
string |
带球摆脱dribblesSuc |
- |
└─o |
string |
越位offside |
- |
└─t |
string |
铲断tackle |
- |
└─i |
string |
拦截interception |
- |
└─cl |
string |
解围clearance |
- |
└─clS |
string |
解围有效clearanceSuc |
- |
└─oP |
string |
制造越位offsideProvoked |
- |
└─dd |
string |
偷球dispossessed |
- |
└─sB |
string |
封堵shotsBlocked |
- |
└─aS |
string |
争顶成功aerialSuc |
- |
└─f |
string |
犯规foul |
- |
└─red |
string |
红牌red |
- |
└─y |
string |
黄牌yellow |
- |
└─oG |
string |
乌龙球ownGoal |
- |
└─th |
string |
控球touch |
- |
└─tO |
string |
失误turnOver |
- |
└─pP |
string |
导致罚球penaltyProvoked |
- |
└─sOP |
string |
击中门柱shotsOnPost |
- |
└─g |
string |
进球goals |
- |
└─pSP |
string |
传球成功率passSucPercent |
- |
└─aM |
string |
分钟/助攻assistMinute |
- |
└─gM |
string |
分钟/球goalMinute |
- |
└─gP |
string |
入球转化率goalPercent |
- |
└─trophyList |
array |
荣誉 |
- |
└─transferList |
array |
转会 |
- |
└─transferId |
int32 |
转会记录 |
- |
└─dateIn |
string |
转入日期 |
- |
└─dateOut |
string |
转出日期 |
- |
└─teamInId |
int32 |
转入球队 |
- |
└─teamOutId |
int32 |
转出球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─type |
int32 |
转会类型 1完全所有 2租借 3自由转会 4租借结束 5共同所有 |
- |
└─position |
string |
描述 |
- |
└─linedList |
array |
伤病/停赛 |
- |
└─description |
string |
描述 |
- |
└─startDate |
string |
开始日期 |
- |
└─endDate |
string |
结束日期 |
- |
└─id |
int32 |
球员ID |
- |
└─info |
object |
基本信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─number |
string |
号码 |
- |
└─age |
string |
年龄 |
- |
└─position |
int32 |
位置,0位置,1守门员,2后卫,3中场,4前锋 |
- |
└─countryId |
string |
国籍 |
- |
└─birthDate |
string |
生日 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
高 |
- |
└─weight |
string |
体重 |
- |
└─preferredFoot |
int32 |
首选脚,0未知,1左脚,2右脚 |
- |
└─marketValueEur |
string |
市值欧元 |
- |
└─image |
string |
头像 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"statsList": [
{
"id": "",
"sS": "",
"bS": "",
"pT": "",
"nPG": "",
"pG": "",
"s": "",
"sT": "",
"wF": "",
"bSum": "",
"r": "",
"eR": "",
"p": "",
"pS": "",
"kP": "",
"a": "",
"lB": "",
"lBS": "",
"tB": "",
"tBS": "",
"c": "",
"cS": "",
"dS": "",
"o": "",
"t": "",
"i": "",
"cl": "",
"clS": "",
"oP": "",
"dd": "",
"sB": "",
"aS": "",
"f": "",
"red": "",
"y": "",
"oG": "",
"th": "",
"tO": "",
"pP": "",
"sOP": "",
"g": "",
"pSP": "",
"aM": "",
"gM": "",
"gP": ""
}
],
"trophyList": [
""
],
"transferList": [
{
"transferId": 0,
"dateIn": "",
"dateOut": "",
"teamInId": 0,
"teamOutId": 0,
"playerId": 0,
"type": 0,
"position": ""
}
],
"linedList": [
{
"description": "",
"startDate": "",
"endDate": "",
"id": 0
}
],
"info": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"number": "",
"age": "",
"position": 0,
"countryId": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"preferredFoot": 0,
"marketValueEur": "",
"image": ""
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/player?languageId=zh&playerId=0
3.5. 教练-比赛统计、荣誉、转会、伤病/停赛历史
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
coachId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─transferList |
array |
转会 |
- |
└─transferId |
int32 |
转会记录 |
- |
└─dateIn |
string |
转入日期 |
- |
└─dateOut |
string |
转出日期 |
- |
└─teamInId |
int32 |
转入球队 |
- |
└─teamOutId |
int32 |
转出球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─type |
int32 |
转会类型 1完全所有 2租借 3自由转会 4租借结束 5共同所有 |
- |
└─position |
string |
描述 |
- |
└─age |
string |
年龄 |
- |
└─linedList |
array |
伤病/停赛 |
- |
└─description |
string |
描述 |
- |
└─startDate |
string |
开始日期 |
- |
└─endDate |
string |
结束日期 |
- |
└─id |
int32 |
球员ID |
- |
└─trophyList |
array |
荣誉 |
- |
└─info |
object |
基本信息 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"transferList": [
{
"transferId": 0,
"dateIn": "",
"dateOut": "",
"teamInId": 0,
"teamOutId": 0,
"playerId": 0,
"type": 0,
"position": "",
"age": ""
}
],
"linedList": [
{
"description": "",
"startDate": "",
"endDate": "",
"id": 0
}
],
"trophyList": [
""
],
"info": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/coach?languageId=zh&coachId=0
3.6. 比赛-统计、事件、情报、阵容、文字、天气、其他事件
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─stats |
object |
比赛统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─matchId |
int32 |
比赛id |
- |
└─status |
int32 |
比赛状态 |
- |
└─animationId |
int32 |
动画id |
- |
└─homePlayer |
array |
主队球员 |
- |
└─playerId |
int32 |
球员id |
- |
└─pos |
int32 |
球员位置 |
- |
└─captain |
boolean |
球员是否是队长 |
- |
└─subst |
boolean |
球员是否首发 |
- |
└─shotsTotal |
int32 |
球员射门数 |
- |
└─shotsOnGoal |
int32 |
球员射正数 |
- |
└─goals |
int32 |
球员进球数 |
- |
└─minusGoals |
int32 |
球员失球数 |
- |
└─assists |
int32 |
球员助攻数 |
- |
└─offsides |
int32 |
球员越位数 |
- |
└─foulsDrawn |
int32 |
球员被犯规数 |
- |
└─foulsCommited |
int32 |
球员犯规数 |
- |
└─tackles |
int32 |
球员抢断数 |
- |
└─blocks |
int32 |
球员有效进攻阻挡数 |
- |
└─totalCrosses |
int32 |
球队传中球数 |
- |
└─accCrosses |
int32 |
球队传中球成功数 |
- |
└─interceptions |
int32 |
球员拦截数 |
- |
└─clearances |
int32 |
球员解除危险球数 |
- |
└─dispossesed |
int32 |
球员失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─savesInsideBox |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
球员拼抢次数 |
- |
└─duelsWon |
int32 |
球员拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
球员带球过人数 |
- |
└─dribbleSucc |
int32 |
球员带球过人成功数 |
- |
└─dribbledPast |
int32 |
球员过人成功率 |
- |
└─yellow |
int32 |
球员黄牌数 |
- |
└─red |
int32 |
球员红牌数 |
- |
└─penScore |
int32 |
球员点球得分(仅在常规时间和加时赛中) |
- |
└─penMiss |
int32 |
球员点球未中(仅在常规时间和加时赛中) |
- |
└─penSave |
int32 |
守门员扑出点球的次数(仅在常规时间和加时赛中) |
- |
└─penCommitted |
int32 |
球员处罚次数 |
- |
└─penWon |
int32 |
球队获得点球的次数(球员犯规后的点球) |
- |
└─hitWoodwork |
int32 |
球员击中门框 |
- |
└─passes |
int32 |
传球次数 |
- |
└─passesAcc |
string |
球员传球成功率 |
- |
└─keyPasses |
int32 |
球员关键传球数 |
- |
└─minutesPlayed |
string |
球员上场时间 |
- |
└─rating |
string |
球员平均得分 |
- |
└─awayPlayer |
array |
客队球员 |
- |
└─playerId |
int32 |
球员id |
- |
└─pos |
int32 |
球员位置 |
- |
└─captain |
boolean |
球员是否是队长 |
- |
└─subst |
boolean |
球员是否首发 |
- |
└─shotsTotal |
int32 |
球员射门数 |
- |
└─shotsOnGoal |
int32 |
球员射正数 |
- |
└─goals |
int32 |
球员进球数 |
- |
└─minusGoals |
int32 |
球员失球数 |
- |
└─assists |
int32 |
球员助攻数 |
- |
└─offsides |
int32 |
球员越位数 |
- |
└─foulsDrawn |
int32 |
球员被犯规数 |
- |
└─foulsCommited |
int32 |
球员犯规数 |
- |
└─tackles |
int32 |
球员抢断数 |
- |
└─blocks |
int32 |
球员有效进攻阻挡数 |
- |
└─totalCrosses |
int32 |
球队传中球数 |
- |
└─accCrosses |
int32 |
球队传中球成功数 |
- |
└─interceptions |
int32 |
球员拦截数 |
- |
└─clearances |
int32 |
球员解除危险球数 |
- |
└─dispossesed |
int32 |
球员失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─savesInsideBox |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
球员拼抢次数 |
- |
└─duelsWon |
int32 |
球员拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
球员带球过人数 |
- |
└─dribbleSucc |
int32 |
球员带球过人成功数 |
- |
└─dribbledPast |
int32 |
球员过人成功率 |
- |
└─yellow |
int32 |
球员黄牌数 |
- |
└─red |
int32 |
球员红牌数 |
- |
└─penScore |
int32 |
球员点球得分(仅在常规时间和加时赛中) |
- |
└─penMiss |
int32 |
球员点球未中(仅在常规时间和加时赛中) |
- |
└─penSave |
int32 |
守门员扑出点球的次数(仅在常规时间和加时赛中) |
- |
└─penCommitted |
int32 |
球员处罚次数 |
- |
└─penWon |
int32 |
球队获得点球的次数(球员犯规后的点球) |
- |
└─hitWoodwork |
int32 |
球员击中门框 |
- |
└─passes |
int32 |
传球次数 |
- |
└─passesAcc |
string |
球员传球成功率 |
- |
└─keyPasses |
int32 |
球员关键传球数 |
- |
└─minutesPlayed |
string |
球员上场时间 |
- |
└─rating |
string |
球员平均得分 |
- |
└─event |
object |
比赛事件 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
足球类型:1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补,6点球,7角球,8乌龙,11助攻,12越位,13射正,14射偏,15点球不进,21上半场,22,中场,23下半场,24加时,30VAR |
- |
└─team |
int32 |
球队 0全场,1主队,2客队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─seconds |
string |
秒 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─eventStats |
object |
比赛事件 |
- |
└─attacks |
object |
进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─dangerousAttacks |
object |
危险进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─possession |
object |
控球率 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─offTarget |
object |
射偏 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─onTarget |
object |
射正 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─corners |
object |
角球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─goals |
object |
进球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─yellowCards |
object |
黄牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─redCards |
object |
红牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─substitutions |
object |
替补 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─lineup |
object |
比赛阵容 |
- |
└─matchId |
int32 |
比赛 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─status |
int32 |
比赛状态 |
- |
└─lineup |
object |
阵容 |
- |
└─homeFormation |
string |
主队阵容 |
- |
└─awayFormation |
string |
客队阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─substitute |
object |
替补阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─homeInjury |
array |
主队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─awayInjury |
array |
客队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─injuries |
object |
比赛情报 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─home |
object |
主队 |
- |
└─miss |
array |
伤停 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
待定 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─away |
object |
客队 |
- |
└─miss |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─status |
int32 |
比赛状态 |
- |
└─weather |
object |
比赛天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─textList |
array |
比赛文字 |
- |
└─matchId |
int32 |
比赛id |
- |
└─id |
string |
id |
- |
└─minute |
string |
分钟 |
- |
└─contentEn |
string |
英文内容 |
- |
└─content |
string |
内容 |
- |
└─extra |
object |
比赛教练,比赛裁判,比赛球场 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"matchId": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0,
"matchId": 0,
"status": 0,
"animationId": 0,
"homePlayer": [
{
"playerId": 0,
"pos": 0,
"captain": true,
"subst": true,
"shotsTotal": 0,
"shotsOnGoal": 0,
"goals": 0,
"minusGoals": 0,
"assists": 0,
"offsides": 0,
"foulsDrawn": 0,
"foulsCommited": 0,
"tackles": 0,
"blocks": 0,
"totalCrosses": 0,
"accCrosses": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"savesInsideBox": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"dribbledPast": 0,
"yellow": 0,
"red": 0,
"penScore": 0,
"penMiss": 0,
"penSave": 0,
"penCommitted": 0,
"penWon": 0,
"hitWoodwork": 0,
"passes": 0,
"passesAcc": "",
"keyPasses": 0,
"minutesPlayed": "",
"rating": ""
}
],
"awayPlayer": [
{
"playerId": 0,
"pos": 0,
"captain": true,
"subst": true,
"shotsTotal": 0,
"shotsOnGoal": 0,
"goals": 0,
"minusGoals": 0,
"assists": 0,
"offsides": 0,
"foulsDrawn": 0,
"foulsCommited": 0,
"tackles": 0,
"blocks": 0,
"totalCrosses": 0,
"accCrosses": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"savesInsideBox": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"dribbledPast": 0,
"yellow": 0,
"red": 0,
"penScore": 0,
"penMiss": 0,
"penSave": 0,
"penCommitted": 0,
"penWon": 0,
"hitWoodwork": 0,
"passes": 0,
"passesAcc": "",
"keyPasses": 0,
"minutesPlayed": "",
"rating": ""
}
]
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"team": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"seconds": "",
"result": "",
"resultEn": "",
"assistId": 0,
"teamId": 0
}
],
"updateTime": 0
},
"eventStats": {
"attacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"dangerousAttacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"possession": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"offTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"onTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"corners": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"goals": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"yellowCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"redCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"substitutions": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
}
},
"lineup": {
"matchId": 0,
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"status": 0,
"lineup": {
"homeFormation": "",
"awayFormation": "",
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"substitute": {
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"updateTime": 0,
"homeInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
],
"awayInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
]
},
"injuries": {
"matchId": 0,
"home": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"away": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"status": 0
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"textList": [
{
"matchId": 0,
"id": "",
"minute": "",
"contentEn": "",
"content": ""
}
],
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/match?languageId=zh&matchId=0
3.7. 比赛-交战统计
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─h2hList |
array |
最近三十场交锋 |
- |
└─matchId |
int32 |
比赛id |
- |
└─leagueId |
int32 |
联赛id |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─time |
int32 |
日期 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeList |
array |
最近三十场主队主场比赛 |
- |
└─matchId |
int32 |
比赛id |
- |
└─leagueId |
int32 |
联赛id |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─time |
int32 |
日期 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayList |
array |
最近三十场客队客场比赛 |
- |
└─matchId |
int32 |
比赛id |
- |
└─leagueId |
int32 |
联赛id |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─time |
int32 |
日期 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeFutureList |
array |
主队未来比赛 |
- |
└─matchId |
int32 |
比赛id |
- |
└─leagueId |
int32 |
联赛id |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─time |
int32 |
日期 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayFutureList |
array |
客队未来比赛 |
- |
└─matchId |
int32 |
比赛id |
- |
└─leagueId |
int32 |
联赛id |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─time |
int32 |
日期 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"homeId": 0,
"awayId": 0,
"h2hList": [
{
"matchId": 0,
"leagueId": 0,
"homeId": 0,
"awayId": 0,
"time": 0,
"homeScore": "",
"awayScore": ""
}
],
"homeList": [
{
"matchId": 0,
"leagueId": 0,
"homeId": 0,
"awayId": 0,
"time": 0,
"homeScore": "",
"awayScore": ""
}
],
"awayList": [
{
"matchId": 0,
"leagueId": 0,
"homeId": 0,
"awayId": 0,
"time": 0,
"homeScore": "",
"awayScore": ""
}
],
"homeFutureList": [
{
"matchId": 0,
"leagueId": 0,
"homeId": 0,
"awayId": 0,
"time": 0,
"homeScore": "",
"awayScore": ""
}
],
"awayFutureList": [
{
"matchId": 0,
"leagueId": 0,
"homeId": 0,
"awayId": 0,
"time": 0,
"homeScore": "",
"awayScore": ""
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/statistics/matchBattle?languageId=zh&matchId=0
4. 指数数据
4.1. 盘口
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─bookmakerId |
int32 |
盘口公司id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"bookmakerId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/odds/bookmakerList?languageId=zh
4.2. 市场
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─marketId |
int32 |
市场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─sort |
int32 |
排序 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"marketId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"sort": 0
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/odds/marketList?languageId=zh
4.3. 即时指数
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每1S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
companyIds |
string |
false |
盘口id,逗号隔开,默认全部 |
||
categoryIds |
string |
false |
玩法id,逗号隔开,默认全部 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─matchId |
int64 |
比赛id |
- |
└─categoryList |
array |
玩法 |
- |
└─id |
int32 |
盘口id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─companyList |
array |
市场 |
- |
└─matchId |
int64 |
比赛id |
- |
└─id |
int32 |
市场id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─ts |
int64 |
更新时间 |
- |
└─oddsList |
array |
赔率列表 |
- |
└─matchId |
int64 |
比赛id |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
└─time |
string |
时间 |
- |
└─score |
string |
比分 |
- |
└─ts |
int64 |
更新时间 |
- |
└─type |
int32 |
1早、2即、3临、4滚 |
- |
└─stop |
boolean |
是否停盘 |
- |
└─childList |
array |
指数 |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"matchId": 0,
"categoryList": [
{
"id": 0,
"stop": true,
"companyList": [
{
"matchId": 0,
"id": 0,
"stop": true,
"ts": 0,
"oddsList": [
{
"matchId": 0,
"name": "",
"value": "",
"time": "",
"score": "",
"ts": 0,
"type": 0,
"stop": true,
"childList": [
{
"name": "",
"value": ""
}
]
}
]
}
]
}
]
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/odds/oddsList?languageId=zh&companyIds=&categoryIds=
4.4. 即时指数-按比赛查询
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每10S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
matchId |
int32 |
true |
No comments found. |
||
companyIds |
string |
false |
盘口id,逗号隔开,默认全部 |
||
categoryIds |
string |
false |
玩法id,逗号隔开,默认全部 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─matchId |
int64 |
比赛id |
- |
└─categoryList |
array |
玩法 |
- |
└─id |
int32 |
盘口id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─companyList |
array |
市场 |
- |
└─matchId |
int64 |
比赛id |
- |
└─id |
int32 |
市场id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─ts |
int64 |
更新时间 |
- |
└─oddsList |
array |
赔率列表 |
- |
└─matchId |
int64 |
比赛id |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
└─time |
string |
时间 |
- |
└─score |
string |
比分 |
- |
└─ts |
int64 |
更新时间 |
- |
└─type |
int32 |
1早、2即、3临、4滚 |
- |
└─stop |
boolean |
是否停盘 |
- |
└─childList |
array |
指数 |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"matchId": 0,
"categoryList": [
{
"id": 0,
"stop": true,
"companyList": [
{
"matchId": 0,
"id": 0,
"stop": true,
"ts": 0,
"oddsList": [
{
"matchId": 0,
"name": "",
"value": "",
"time": "",
"score": "",
"ts": 0,
"type": 0,
"stop": true,
"childList": [
{
"name": "",
"value": ""
}
]
}
]
}
]
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/odds/oddsById?languageId=zh&matchId=0&companyIds=&categoryIds=
5. 历史数据库
5.1. 历史比赛-列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
current |
int32 |
true |
当前页数 |
||
size |
int32 |
true |
数据数量:默认100,最大200 Validate[max: 200; ] |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─time |
int32 |
比赛时间,时间戳秒 |
- |
└─status |
int32 |
状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─leagueId |
int32 |
联赛id |
- |
└─seasonId |
int32 |
赛季 |
- |
└─stageId |
int32 |
赛季 |
- |
└─venueId |
int32 |
球场 |
- |
└─matchId |
int32 |
比赛id |
- |
└─groupId |
string |
组 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─beidan |
int32 |
是否有北单,0无,1有主客一致,2有主客相反 |
- |
└─lottery |
int32 |
是否有竞彩,0无,1有主客一致,2有主客相反 |
- |
└─animation |
int32 |
是否有动画 |
- |
└─stream |
int32 |
是否有直播 |
- |
└─odds |
int32 |
是否有指数,0无,1有 |
- |
└─injuries |
int32 |
是否有情报,0无,1有 |
- |
└─lineup |
int32 |
是否有阵容,0无,1有 |
- |
└─sort |
int32 |
排序 |
- |
└─stats |
object |
统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─event |
object |
事件信息 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补 |
- |
└─teamId |
int32 |
球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─league |
object |
联赛信息 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
└─sort |
int32 |
排序 |
- |
└─home |
object |
主队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─away |
object |
客队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─weather |
object |
天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─turnBased |
string |
回合制 |
- |
└─extra |
object |
其他信息 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"time": 0,
"status": 0,
"leagueId": 0,
"seasonId": 0,
"stageId": 0,
"venueId": 0,
"matchId": 0,
"groupId": "",
"refereeId": 0,
"homeScore": "",
"awayScore": "",
"homeId": 0,
"awayId": 0,
"beidan": 0,
"lottery": 0,
"animation": 0,
"stream": 0,
"odds": 0,
"injuries": 0,
"lineup": 0,
"sort": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"teamId": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"result": "",
"resultEn": "",
"assistId": 0
}
],
"updateTime": 0
},
"league": {
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"color": "",
"sort": 0
},
"home": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"away": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"turnBased": "",
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/matchPage?languageId=zh¤t=1&size=100
5.2. 历史赛季-比赛列表
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
leagueId |
int32 |
true |
联赛id |
||
seasonId |
int32 |
true |
赛季id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─time |
int32 |
比赛时间,时间戳秒 |
- |
└─status |
int32 |
状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─leagueId |
int32 |
联赛id |
- |
└─seasonId |
int32 |
赛季 |
- |
└─stageId |
int32 |
赛季 |
- |
└─venueId |
int32 |
球场 |
- |
└─matchId |
int32 |
比赛id |
- |
└─groupId |
string |
组 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─homeScore |
string |
主队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─awayScore |
string |
客队比赛比分;int数组格式,返回顺序:常规时间比分,半场比分,加时赛比分(不含常规时间),点球比分(不含常规时间和加时赛比分),总分 |
- |
└─homeId |
int32 |
主队 |
- |
└─awayId |
int32 |
客队 |
- |
└─beidan |
int32 |
是否有北单,0无,1有主客一致,2有主客相反 |
- |
└─lottery |
int32 |
是否有竞彩,0无,1有主客一致,2有主客相反 |
- |
└─animation |
int32 |
是否有动画 |
- |
└─stream |
int32 |
是否有直播 |
- |
└─odds |
int32 |
是否有指数,0无,1有 |
- |
└─injuries |
int32 |
是否有情报,0无,1有 |
- |
└─lineup |
int32 |
是否有阵容,0无,1有 |
- |
└─sort |
int32 |
排序 |
- |
└─stats |
object |
统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─event |
object |
事件信息 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补 |
- |
└─teamId |
int32 |
球队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─league |
object |
联赛信息 |
- |
└─leagueId |
int32 |
赛事id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
赛事logo |
- |
└─color |
string |
颜色 |
- |
└─sort |
int32 |
排序 |
- |
└─home |
object |
主队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─away |
object |
客队信息 |
- |
└─teamId |
int32 |
球队id |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
球队logo |
- |
└─weather |
object |
天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─turnBased |
string |
回合制 |
- |
└─extra |
object |
其他信息 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"time": 0,
"status": 0,
"leagueId": 0,
"seasonId": 0,
"stageId": 0,
"venueId": 0,
"matchId": 0,
"groupId": "",
"refereeId": 0,
"homeScore": "",
"awayScore": "",
"homeId": 0,
"awayId": 0,
"beidan": 0,
"lottery": 0,
"animation": 0,
"stream": 0,
"odds": 0,
"injuries": 0,
"lineup": 0,
"sort": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"teamId": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"result": "",
"resultEn": "",
"assistId": 0
}
],
"updateTime": 0
},
"league": {
"leagueId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"color": "",
"sort": 0
},
"home": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"away": {
"teamId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": ""
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"turnBased": "",
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/matchSeason?languageId=zh&leagueId=0&seasonId=0
5.3. 历史赛季-积分
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
leagueId |
int32 |
true |
联赛ID |
||
season |
string |
true |
赛季 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─season |
string |
赛季 |
- |
└─round |
string |
轮次 |
- |
└─stageId |
int32 |
阶段id |
- |
└─typeNameS |
string |
升降级说明 逗号隔开 |
- |
└─totalList |
array |
总积分榜 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─homeList |
array |
主场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─awayList |
array |
客场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─halfList |
array |
半场总积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─homeHalfList |
array |
半场主场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
└─awayHalfList |
array |
半场客场积分 |
- |
└─id |
string |
球队ID |
- |
└─p |
string |
排名 |
- |
└─w |
string |
比赛赢的场次 |
- |
└─s |
string |
胜 |
- |
└─d |
string |
平 |
- |
└─l |
string |
负 |
- |
└─gs |
string |
进球数 |
- |
└─ga |
string |
失球数 |
- |
└─t |
string |
总分 |
- |
└─c |
int32 |
升降级说明 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"season": "",
"round": "",
"stageId": 0,
"typeNameS": "",
"totalList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"homeList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"awayList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"halfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"homeHalfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
],
"awayHalfList": [
{
"id": "",
"p": "",
"w": "",
"s": "",
"d": "",
"l": "",
"gs": "",
"ga": "",
"t": "",
"c": 0
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/standings?languageId=zh&leagueId=0&season=
5.4. 历史赛季-统计
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每周更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
leagueId |
int32 |
true |
联赛ID |
||
season |
string |
true |
赛季 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─teamId |
int32 |
球队id |
- |
└─name |
string |
球队名称 |
- |
└─image |
string |
球队LOGO |
- |
└─goals |
int32 |
进球数 |
- |
└─assists |
int32 |
助攻次数 |
- |
└─yellow |
int32 |
黄牌次数 |
- |
└─yellow2 |
int32 |
两黄一红次数 |
- |
└─red |
int32 |
红牌次数 |
- |
└─shotsTotal |
int32 |
射门次数 |
- |
└─shotsOn |
int32 |
射正次数 |
- |
└─goalsConceded |
int32 |
射偏次数 |
- |
└─fouldDrawn |
int32 |
被犯规次数 |
- |
└─foulsCommitted |
int32 |
犯规次数 |
- |
└─tackles |
int32 |
抢断次数 |
- |
└─blocks |
int32 |
有效进攻阻挡次数 |
- |
└─crossesTotal |
int32 |
传中球次数 |
- |
└─crossesAccurate |
int32 |
传中球成功次数 |
- |
└─interceptions |
int32 |
拦截次数 |
- |
└─clearances |
int32 |
解除危险球次数 |
- |
└─dispossesed |
int32 |
失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─insideBoxSaves |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
拼抢次数 |
- |
└─duelsWon |
int32 |
拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
带球过人数 |
- |
└─dribbleSucc |
int32 |
带球过人成功数 |
- |
└─penComm |
int32 |
处罚次数 |
- |
└─penWon |
int32 |
获得点球的次数 |
- |
└─penScored |
int32 |
点球得分 |
- |
└─penMissed |
int32 |
点球未中 |
- |
└─penSaved |
int32 |
守门员扑出点球的次数 |
- |
└─passes |
int32 |
传球次数 |
- |
└─keyPasses |
int32 |
关键传球数 |
- |
└─woordworks |
int32 |
击中门框数 |
- |
└─playerList |
array |
球员统计 |
- |
└─minutes |
int32 |
上场时间 |
- |
└─appearences |
int32 |
本赛季总出场次数(阵容/替补) |
- |
└─lineups |
int32 |
阵容出场次数 |
- |
└─substituteIn |
int32 |
替补出场次数 |
- |
└─substituteOut |
int32 |
被替换掉的比赛次数 |
- |
└─substitutesOnBench |
int32 |
替补未上场次数 |
- |
└─goals |
int32 |
进球数 |
- |
└─assists |
int32 |
助攻次数 |
- |
└─yellow |
int32 |
黄牌次数 |
- |
└─yellow2 |
int32 |
两黄一红次数 |
- |
└─red |
int32 |
红牌次数 |
- |
└─isCaptain |
string |
队长次数 |
- |
└─shotsTotal |
int32 |
射门次数 |
- |
└─shotsOn |
int32 |
射正次数 |
- |
└─goalsConceded |
int32 |
射偏次数 |
- |
└─fouldDrawn |
int32 |
被犯规次数 |
- |
└─foulsCommitted |
int32 |
犯规次数 |
- |
└─tackles |
int32 |
抢断次数 |
- |
└─blocks |
int32 |
有效进攻阻挡次数 |
- |
└─crossesTotal |
int32 |
传中球次数 |
- |
└─crossesAccurate |
int32 |
传中球成功次数 |
- |
└─interceptions |
int32 |
拦截次数 |
- |
└─clearances |
int32 |
解除危险球次数 |
- |
└─dispossesed |
int32 |
失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─insideBoxSaves |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
拼抢次数 |
- |
└─duelsWon |
int32 |
拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
带球过人数 |
- |
└─dribbleSucc |
int32 |
带球过人成功数 |
- |
└─penComm |
int32 |
处罚次数 |
- |
└─penWon |
int32 |
获得点球的次数 |
- |
└─penScored |
int32 |
点球得分 |
- |
└─penMissed |
int32 |
点球未中 |
- |
└─penSaved |
int32 |
守门员扑出点球的次数 |
- |
└─passes |
int32 |
传球次数 |
- |
└─pAccuracy |
double |
传球成功率 |
- |
└─keyPasses |
int32 |
关键传球数 |
- |
└─woordworks |
int32 |
击中门框数 |
- |
└─rating |
double |
得分 |
- |
└─id |
int32 |
球员 |
- |
└─teamId |
int32 |
球队id |
- |
└─number |
string |
号码 |
- |
└─position |
int32 |
位置 |
- |
└─injured |
boolean |
是否受伤 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"teamId": 0,
"name": "",
"image": "",
"goals": 0,
"assists": 0,
"yellow": 0,
"yellow2": 0,
"red": 0,
"shotsTotal": 0,
"shotsOn": 0,
"goalsConceded": 0,
"fouldDrawn": 0,
"foulsCommitted": 0,
"tackles": 0,
"blocks": 0,
"crossesTotal": 0,
"crossesAccurate": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"insideBoxSaves": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"penComm": 0,
"penWon": 0,
"penScored": 0,
"penMissed": 0,
"penSaved": 0,
"passes": 0,
"keyPasses": 0,
"woordworks": 0,
"playerList": [
{
"minutes": 0,
"appearences": 0,
"lineups": 0,
"substituteIn": 0,
"substituteOut": 0,
"substitutesOnBench": 0,
"goals": 0,
"assists": 0,
"yellow": 0,
"yellow2": 0,
"red": 0,
"isCaptain": "",
"shotsTotal": 0,
"shotsOn": 0,
"goalsConceded": 0,
"fouldDrawn": 0,
"foulsCommitted": 0,
"tackles": 0,
"blocks": 0,
"crossesTotal": 0,
"crossesAccurate": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"insideBoxSaves": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"penComm": 0,
"penWon": 0,
"penScored": 0,
"penMissed": 0,
"penSaved": 0,
"passes": 0,
"pAccuracy": 0.0,
"keyPasses": 0,
"woordworks": 0,
"rating": 0.0,
"id": 0,
"teamId": 0,
"number": "",
"position": 0,
"injured": true
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/leagueBest?languageId=zh&leagueId=0&season=
5.5. 历史比赛-统计、事件、情报、阵容、文字、天气、其他事件
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每天更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
多语言 默认zh |
||
matchId |
int32 |
true |
No comments found. |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─stats |
object |
比赛统计 |
- |
└─minute |
string |
分钟 |
- |
└─second |
string |
秒 |
- |
└─overtime |
string |
加时 |
- |
└─startTime |
int64 |
上下半场开始时间 |
- |
└─homeTeam |
object |
主队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─awayTeam |
object |
客队 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─penalty |
int32 |
点球数 |
- |
└─shot |
int32 |
球队射门数 |
- |
└─shotOn |
int32 |
球队射正数 |
- |
└─shotOff |
int32 |
球队射偏数 |
- |
└─corner |
int32 |
球队角球 |
- |
└─possession |
string |
球队控球率 |
- |
└─yellow |
int32 |
球队黃牌 |
- |
└─red |
int32 |
球队紅牌 |
- |
└─attacks |
int32 |
球队进攻 |
- |
└─dangerousAttacks |
int32 |
球队危险进攻 |
- |
└─score |
string |
球队比分 |
- |
└─throwIn |
int32 |
球队界外球 |
- |
└─freeKick |
int32 |
球队任意球 |
- |
└─goalKick |
int32 |
球队球门球 |
- |
└─substitution |
int32 |
球队替换人数 |
- |
└─halfScore |
int32 |
球队上半场比分 |
- |
└─offside |
int32 |
球队越位 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─matchId |
int32 |
比赛id |
- |
└─status |
int32 |
比赛状态 |
- |
└─animationId |
int32 |
动画id |
- |
└─homePlayer |
array |
主队球员 |
- |
└─playerId |
int32 |
球员id |
- |
└─pos |
int32 |
球员位置 |
- |
└─captain |
boolean |
球员是否是队长 |
- |
└─subst |
boolean |
球员是否首发 |
- |
└─shotsTotal |
int32 |
球员射门数 |
- |
└─shotsOnGoal |
int32 |
球员射正数 |
- |
└─goals |
int32 |
球员进球数 |
- |
└─minusGoals |
int32 |
球员失球数 |
- |
└─assists |
int32 |
球员助攻数 |
- |
└─offsides |
int32 |
球员越位数 |
- |
└─foulsDrawn |
int32 |
球员被犯规数 |
- |
└─foulsCommited |
int32 |
球员犯规数 |
- |
└─tackles |
int32 |
球员抢断数 |
- |
└─blocks |
int32 |
球员有效进攻阻挡数 |
- |
└─totalCrosses |
int32 |
球队传中球数 |
- |
└─accCrosses |
int32 |
球队传中球成功数 |
- |
└─interceptions |
int32 |
球员拦截数 |
- |
└─clearances |
int32 |
球员解除危险球数 |
- |
└─dispossesed |
int32 |
球员失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─savesInsideBox |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
球员拼抢次数 |
- |
└─duelsWon |
int32 |
球员拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
球员带球过人数 |
- |
└─dribbleSucc |
int32 |
球员带球过人成功数 |
- |
└─dribbledPast |
int32 |
球员过人成功率 |
- |
└─yellow |
int32 |
球员黄牌数 |
- |
└─red |
int32 |
球员红牌数 |
- |
└─penScore |
int32 |
球员点球得分(仅在常规时间和加时赛中) |
- |
└─penMiss |
int32 |
球员点球未中(仅在常规时间和加时赛中) |
- |
└─penSave |
int32 |
守门员扑出点球的次数(仅在常规时间和加时赛中) |
- |
└─penCommitted |
int32 |
球员处罚次数 |
- |
└─penWon |
int32 |
球队获得点球的次数(球员犯规后的点球) |
- |
└─hitWoodwork |
int32 |
球员击中门框 |
- |
└─passes |
int32 |
传球次数 |
- |
└─passesAcc |
string |
球员传球成功率 |
- |
└─keyPasses |
int32 |
球员关键传球数 |
- |
└─minutesPlayed |
string |
球员上场时间 |
- |
└─rating |
string |
球员平均得分 |
- |
└─awayPlayer |
array |
客队球员 |
- |
└─playerId |
int32 |
球员id |
- |
└─pos |
int32 |
球员位置 |
- |
└─captain |
boolean |
球员是否是队长 |
- |
└─subst |
boolean |
球员是否首发 |
- |
└─shotsTotal |
int32 |
球员射门数 |
- |
└─shotsOnGoal |
int32 |
球员射正数 |
- |
└─goals |
int32 |
球员进球数 |
- |
└─minusGoals |
int32 |
球员失球数 |
- |
└─assists |
int32 |
球员助攻数 |
- |
└─offsides |
int32 |
球员越位数 |
- |
└─foulsDrawn |
int32 |
球员被犯规数 |
- |
└─foulsCommited |
int32 |
球员犯规数 |
- |
└─tackles |
int32 |
球员抢断数 |
- |
└─blocks |
int32 |
球员有效进攻阻挡数 |
- |
└─totalCrosses |
int32 |
球队传中球数 |
- |
└─accCrosses |
int32 |
球队传中球成功数 |
- |
└─interceptions |
int32 |
球员拦截数 |
- |
└─clearances |
int32 |
球员解除危险球数 |
- |
└─dispossesed |
int32 |
球员失去球权数 |
- |
└─saves |
int32 |
守门员扑救数 |
- |
└─savesInsideBox |
int32 |
禁区内射门扑救次数 |
- |
└─duelsTotal |
int32 |
球员拼抢次数 |
- |
└─duelsWon |
int32 |
球员拼抢成功次数 |
- |
└─dribbleAttempts |
int32 |
球员带球过人数 |
- |
└─dribbleSucc |
int32 |
球员带球过人成功数 |
- |
└─dribbledPast |
int32 |
球员过人成功率 |
- |
└─yellow |
int32 |
球员黄牌数 |
- |
└─red |
int32 |
球员红牌数 |
- |
└─penScore |
int32 |
球员点球得分(仅在常规时间和加时赛中) |
- |
└─penMiss |
int32 |
球员点球未中(仅在常规时间和加时赛中) |
- |
└─penSave |
int32 |
守门员扑出点球的次数(仅在常规时间和加时赛中) |
- |
└─penCommitted |
int32 |
球员处罚次数 |
- |
└─penWon |
int32 |
球队获得点球的次数(球员犯规后的点球) |
- |
└─hitWoodwork |
int32 |
球员击中门框 |
- |
└─passes |
int32 |
传球次数 |
- |
└─passesAcc |
string |
球员传球成功率 |
- |
└─keyPasses |
int32 |
球员关键传球数 |
- |
└─minutesPlayed |
string |
球员上场时间 |
- |
└─rating |
string |
球员平均得分 |
- |
└─event |
object |
比赛事件 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─eventList |
array |
事件列表 |
- |
└─type |
int32 |
足球类型:1进球,2黄牌事件,3二黄变一红,4红牌事件,5替补,6点球,7角球,8乌龙,11助攻,12越位,13射正,14射偏,15点球不进,21上半场,22,中场,23下半场,24加时,30VAR |
- |
└─team |
int32 |
球队 0全场,1主队,2客队 |
- |
└─playerId |
int32 |
球员 |
- |
└─eventId |
string |
事件ID |
- |
└─minute |
string |
时间 |
- |
└─seconds |
string |
秒 |
- |
└─result |
string |
结果 |
- |
└─resultEn |
string |
结果 |
- |
└─assistId |
int32 |
替补进场 |
- |
└─teamId |
int32 |
No comments found. |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─eventStats |
object |
比赛事件 |
- |
└─attacks |
object |
进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─dangerousAttacks |
object |
危险进攻 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─possession |
object |
控球率 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─offTarget |
object |
射偏 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─onTarget |
object |
射正 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─corners |
object |
角球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─goals |
object |
进球 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─yellowCards |
object |
黄牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─redCards |
object |
红牌 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─substitutions |
object |
替补 |
- |
└─away |
array |
客队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─home |
array |
主队 |
- |
└─t |
string |
时间分钟 |
- |
└─v |
string |
值 |
- |
└─c |
string |
时间戳秒 |
- |
└─lineup |
object |
比赛阵容 |
- |
└─matchId |
int32 |
比赛 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─status |
int32 |
比赛状态 |
- |
└─lineup |
object |
阵容 |
- |
└─homeFormation |
string |
主队阵容 |
- |
└─awayFormation |
string |
客队阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─substitute |
object |
替补阵容 |
- |
└─homeList |
array |
主队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─awayList |
array |
客队 |
- |
└─id |
int32 |
球员id |
- |
└─player |
object |
球员信息 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─number |
string |
编号 |
- |
└─pos |
int32 |
位置1守门员,2后卫,3中场,4前锋 |
- |
└─updateTime |
int64 |
更新时间 |
- |
└─homeInjury |
array |
主队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─awayInjury |
array |
客队伤停 |
- |
└─playerId |
int32 |
球员 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─image |
string |
头像 |
- |
└─number |
string |
号码 |
- |
└─injuries |
object |
比赛情报 |
- |
└─matchId |
int32 |
比赛ID |
- |
└─home |
object |
主队 |
- |
└─miss |
array |
伤停 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
待定 |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─away |
object |
客队 |
- |
└─miss |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─undetermined |
array |
No comments found. |
- |
└─status |
string |
原因 |
- |
└─type |
int32 |
类型 1-受伤、2-停赛、0-未知 |
- |
└─playerId |
int32 |
球员 |
- |
└─status |
int32 |
比赛状态 |
- |
└─weather |
object |
比赛天气 |
- |
└─q |
string |
气象 |
- |
└─c |
string |
温度 |
- |
└─j |
string |
降水量 |
- |
└─f |
string |
风速 |
- |
└─s |
string |
湿度 |
- |
└─textList |
array |
比赛文字 |
- |
└─matchId |
int32 |
比赛id |
- |
└─id |
string |
id |
- |
└─minute |
string |
分钟 |
- |
└─contentEn |
string |
英文内容 |
- |
└─content |
string |
内容 |
- |
└─extra |
object |
比赛教练,比赛裁判,比赛球场 |
- |
└─homeCoach |
object |
主队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─awayCoach |
object |
客队教练 |
- |
└─coachId |
int32 |
教练 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameShortEn |
string |
英文简称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameShortZh |
string |
中文简称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─nameShortZht |
string |
繁体简称 |
- |
└─firstName |
string |
名 |
- |
└─lastName |
string |
姓 |
- |
└─teamId |
int32 |
球队 |
- |
└─countryId |
string |
国家 |
- |
└─age |
string |
年龄 |
- |
└─birthDate |
string |
日期 |
- |
└─birthCountryId |
string |
出生国家 |
- |
└─birthPlace |
string |
出生地 |
- |
└─height |
string |
身高 |
- |
└─weight |
string |
体重 |
- |
└─image |
string |
头像 |
- |
└─refereeData |
object |
裁判 |
- |
└─refereeId |
int32 |
裁判 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─image |
string |
头像 |
- |
└─venueData |
object |
球场 |
- |
└─venueId |
int32 |
球场 |
- |
└─nameEn |
string |
英文名称 |
- |
└─nameZh |
string |
中文名称 |
- |
└─nameZht |
string |
繁体名称 |
- |
└─surface |
string |
地面 |
- |
└─address |
string |
地址 |
- |
└─city |
string |
城市 |
- |
└─capacity |
string |
球场容量 |
- |
└─image |
string |
球场logo |
- |
└─country |
string |
国家 |
- |
└─location |
string |
定位 |
- |
└─build |
string |
建造年份 |
- |
└─status |
string |
近况 |
- |
└─introduction |
string |
场馆介绍 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"matchId": 0,
"stats": {
"minute": "",
"second": "",
"overtime": "",
"startTime": 0,
"homeTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"awayTeam": {
"teamId": 0,
"penalty": 0,
"shot": 0,
"shotOn": 0,
"shotOff": 0,
"corner": 0,
"possession": "",
"yellow": 0,
"red": 0,
"attacks": 0,
"dangerousAttacks": 0,
"score": "",
"throwIn": 0,
"freeKick": 0,
"goalKick": 0,
"substitution": 0,
"halfScore": 0,
"offside": 0
},
"updateTime": 0,
"matchId": 0,
"status": 0,
"animationId": 0,
"homePlayer": [
{
"playerId": 0,
"pos": 0,
"captain": true,
"subst": true,
"shotsTotal": 0,
"shotsOnGoal": 0,
"goals": 0,
"minusGoals": 0,
"assists": 0,
"offsides": 0,
"foulsDrawn": 0,
"foulsCommited": 0,
"tackles": 0,
"blocks": 0,
"totalCrosses": 0,
"accCrosses": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"savesInsideBox": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"dribbledPast": 0,
"yellow": 0,
"red": 0,
"penScore": 0,
"penMiss": 0,
"penSave": 0,
"penCommitted": 0,
"penWon": 0,
"hitWoodwork": 0,
"passes": 0,
"passesAcc": "",
"keyPasses": 0,
"minutesPlayed": "",
"rating": ""
}
],
"awayPlayer": [
{
"playerId": 0,
"pos": 0,
"captain": true,
"subst": true,
"shotsTotal": 0,
"shotsOnGoal": 0,
"goals": 0,
"minusGoals": 0,
"assists": 0,
"offsides": 0,
"foulsDrawn": 0,
"foulsCommited": 0,
"tackles": 0,
"blocks": 0,
"totalCrosses": 0,
"accCrosses": 0,
"interceptions": 0,
"clearances": 0,
"dispossesed": 0,
"saves": 0,
"savesInsideBox": 0,
"duelsTotal": 0,
"duelsWon": 0,
"dribbleAttempts": 0,
"dribbleSucc": 0,
"dribbledPast": 0,
"yellow": 0,
"red": 0,
"penScore": 0,
"penMiss": 0,
"penSave": 0,
"penCommitted": 0,
"penWon": 0,
"hitWoodwork": 0,
"passes": 0,
"passesAcc": "",
"keyPasses": 0,
"minutesPlayed": "",
"rating": ""
}
]
},
"event": {
"matchId": 0,
"eventList": [
{
"type": 0,
"team": 0,
"playerId": 0,
"eventId": "",
"minute": "",
"seconds": "",
"result": "",
"resultEn": "",
"assistId": 0,
"teamId": 0
}
],
"updateTime": 0
},
"eventStats": {
"attacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"dangerousAttacks": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"possession": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"offTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"onTarget": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"corners": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"goals": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"yellowCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"redCards": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
},
"substitutions": {
"away": [
{
"t": "",
"v": "",
"c": ""
}
],
"home": [
{
"t": "",
"v": "",
"c": ""
}
]
}
},
"lineup": {
"matchId": 0,
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"status": 0,
"lineup": {
"homeFormation": "",
"awayFormation": "",
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"substitute": {
"homeList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
],
"awayList": [
{
"id": 0,
"player": {
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
},
"number": "",
"pos": 0
}
]
},
"updateTime": 0,
"homeInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
],
"awayInjury": [
{
"playerId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"image": "",
"number": ""
}
]
},
"injuries": {
"matchId": 0,
"home": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"away": {
"miss": [
{
"status": "",
"type": 0,
"playerId": 0
}
],
"undetermined": [
{
"status": "",
"type": 0,
"playerId": 0
}
]
},
"status": 0
},
"weather": {
"q": "",
"c": "",
"j": "",
"f": "",
"s": ""
},
"textList": [
{
"matchId": 0,
"id": "",
"minute": "",
"contentEn": "",
"content": ""
}
],
"extra": {
"homeCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"awayCoach": {
"coachId": 0,
"nameEn": "",
"nameShortEn": "",
"nameZh": "",
"nameShortZh": "",
"nameZht": "",
"nameShortZht": "",
"firstName": "",
"lastName": "",
"teamId": 0,
"countryId": "",
"age": "",
"birthDate": "",
"birthCountryId": "",
"birthPlace": "",
"height": "",
"weight": "",
"image": ""
},
"refereeData": {
"refereeId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"image": ""
},
"venueData": {
"venueId": 0,
"nameEn": "",
"nameZh": "",
"nameZht": "",
"surface": "",
"address": "",
"city": "",
"capacity": "",
"image": "",
"country": "",
"location": "",
"build": "",
"status": "",
"introduction": ""
}
}
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/match?languageId=zh&matchId=0
5.6. 历史指数-按比赛查询
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每10S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
matchId |
int32 |
true |
No comments found. |
||
companyIds |
string |
false |
盘口id,逗号隔开,默认全部 |
||
categoryIds |
string |
false |
玩法id,逗号隔开,默认全部 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─matchId |
int64 |
比赛id |
- |
└─categoryList |
array |
玩法 |
- |
└─id |
int32 |
盘口id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─companyList |
array |
市场 |
- |
└─matchId |
int64 |
比赛id |
- |
└─id |
int32 |
市场id |
- |
└─stop |
boolean |
是否停盘 |
- |
└─ts |
int64 |
更新时间 |
- |
└─oddsList |
array |
赔率列表 |
- |
└─matchId |
int64 |
比赛id |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
└─time |
string |
时间 |
- |
└─score |
string |
比分 |
- |
└─ts |
int64 |
更新时间 |
- |
└─type |
int32 |
1早、2即、3临、4滚 |
- |
└─stop |
boolean |
是否停盘 |
- |
└─childList |
array |
指数 |
- |
└─name |
string |
名称 |
- |
└─value |
string |
值 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"matchId": 0,
"categoryList": [
{
"id": 0,
"stop": true,
"companyList": [
{
"matchId": 0,
"id": 0,
"stop": true,
"ts": 0,
"oddsList": [
{
"matchId": 0,
"name": "",
"value": "",
"time": "",
"score": "",
"ts": 0,
"type": 0,
"stop": true,
"childList": [
{
"name": "",
"value": ""
}
]
}
]
}
]
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://api.superscore.cn/football/database/oddsById?languageId=zh&matchId=0&companyIds=&categoryIds=
6. 体彩数据
6.1. 竞彩受注赛程(未开售比赛)
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
classify |
int32 |
false |
1竞彩足球、2竞彩篮球 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─issue |
string |
No comments found. |
- |
└─lotteryList |
array |
No comments found. |
- |
└─lotteryId |
int32 |
竞彩ID |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─leagueCode |
string |
联赛编号 |
- |
└─issue |
string |
彩票期号 日期 |
- |
└─issueNum |
string |
序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeEn |
string |
主队英文简称 |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─homeScore |
int32 |
主队比分 |
- |
└─homeCode |
string |
主队编号 |
- |
└─halfHomeScore |
int32 |
主队半场比分 |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayRank |
string |
客队排名 |
- |
└─awayEn |
string |
客队英文简称 |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayScore |
int32 |
客队比分 |
- |
└─awayCode |
string |
客队编号 |
- |
└─halfAwayScore |
int32 |
客队半场比分 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─sellStatus |
int32 |
销售状态码 状态码:0-未开售、1-仅过关、2-单关和过关、3-无/停售,4-已开奖, |
- |
└─spf |
string |
足球 胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间, |
- |
└─spf2 |
string |
足球 胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─rq |
string |
足球 让球胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─rq2 |
string |
足球 让球胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bf |
string |
足球 比分: s00s00=0:0, s00s01=0:1, s00s02=0:2, s1sa=负其他, s1sd=平其他, s1sh=胜其他, updateDate 更新日期, updateTime 更新时间 |
- |
└─bf2 |
string |
足球 比分 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─jq |
string |
足球 进球总数: s0=0球, s1=1球, s2=2球, s7=7+, updateDate 更新日期, updateTime 更新时间 |
- |
└─jq2 |
string |
足球 进球总数 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bqc |
string |
足球 半全场胜平负: aa=负负, ad=负平, ah=负胜, da=平负, dd=平平, dh=平胜, ha=胜负, hd=胜平, hh=胜胜, updateDate 更新日期, updateTime 更新时间 |
- |
└─bqc2 |
string |
足球 半全场胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─sf |
string |
篮球 胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sf2 |
string |
篮球 胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─rf |
string |
篮球 让分胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─rf2 |
string |
篮球 让分胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─dxf |
string |
篮球 大小分: h=大, l=小, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─dxf2 |
string |
篮球 大小分 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数, |
- |
└─sfc |
string |
篮球 胜分差: w1=胜1, l1=负1, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sfc2 |
string |
篮球 胜分差 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─single |
int32 |
足球胜平负单关、篮球胜负单关 |
- |
└─single2 |
int32 |
足球让球单关、篮球让分胜负单关 |
- |
└─single3 |
int32 |
篮球大小分 |
- |
└─matchRate |
string |
支持率 hSupportRate=主支持率、 dSupportRate=平支持率、 aSupportRate=客支持率 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"issue": "",
"lotteryList": [
{
"lotteryId": 0,
"classify": 0,
"league": "",
"leagueShort": "",
"leagueCode": "",
"issue": "",
"issueNum": "",
"home": "",
"homeLogo": "",
"homeEn": "",
"homeShort": "",
"homeRank": "",
"homeScore": 0,
"homeCode": "",
"halfHomeScore": 0,
"away": "",
"awayLogo": "",
"awayRank": "",
"awayEn": "",
"awayShort": "",
"awayScore": 0,
"awayCode": "",
"halfAwayScore": 0,
"matchTime": "",
"sellStatus": 0,
"spf": "",
"spf2": "",
"rq": "",
"rq2": "",
"bf": "",
"bf2": "",
"jq": "",
"jq2": "",
"bqc": "",
"bqc2": "",
"sf": "",
"sf2": "",
"rf": "",
"rf2": "",
"dxf": "",
"dxf2": "",
"sfc": "",
"sfc2": "",
"single": 0,
"single2": 0,
"single3": 0,
"matchRate": ""
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/scheduleList?languageId=zh&classify=1
6.2. 获取开奖日期和期号
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
classify |
int32 |
false |
1竞彩足球、2竞彩篮球、3北单 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/dateList?languageId=zh&classify=1
6.3. 获取竞彩比赛指数
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
date |
|
string |
false |
日期 |
|
classify |
int32 |
false |
1足球 2篮球 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─lotteryId |
int32 |
竞彩ID |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─leagueCode |
string |
联赛编号 |
- |
└─issue |
string |
彩票期号 日期 |
- |
└─issueNum |
string |
序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeEn |
string |
主队英文简称 |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─homeScore |
int32 |
主队比分 |
- |
└─homeCode |
string |
主队编号 |
- |
└─halfHomeScore |
int32 |
主队半场比分 |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayRank |
string |
客队排名 |
- |
└─awayEn |
string |
客队英文简称 |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayScore |
int32 |
客队比分 |
- |
└─awayCode |
string |
客队编号 |
- |
└─halfAwayScore |
int32 |
客队半场比分 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─sellStatus |
int32 |
销售状态码 状态码:0-未开售、1-仅过关、2-单关和过关、3-无/停售,4-已开奖, |
- |
└─spf |
string |
足球 胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间, |
- |
└─spf2 |
string |
足球 胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─rq |
string |
足球 让球胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─rq2 |
string |
足球 让球胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bf |
string |
足球 比分: s00s00=0:0, s00s01=0:1, s00s02=0:2, s1sa=负其他, s1sd=平其他, s1sh=胜其他, updateDate 更新日期, updateTime 更新时间 |
- |
└─bf2 |
string |
足球 比分 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─jq |
string |
足球 进球总数: s0=0球, s1=1球, s2=2球, s7=7+, updateDate 更新日期, updateTime 更新时间 |
- |
└─jq2 |
string |
足球 进球总数 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bqc |
string |
足球 半全场胜平负: aa=负负, ad=负平, ah=负胜, da=平负, dd=平平, dh=平胜, ha=胜负, hd=胜平, hh=胜胜, updateDate 更新日期, updateTime 更新时间 |
- |
└─bqc2 |
string |
足球 半全场胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─sf |
string |
篮球 胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sf2 |
string |
篮球 胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─rf |
string |
篮球 让分胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─rf2 |
string |
篮球 让分胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─dxf |
string |
篮球 大小分: h=大, l=小, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─dxf2 |
string |
篮球 大小分 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数, |
- |
└─sfc |
string |
篮球 胜分差: w1=胜1, l1=负1, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sfc2 |
string |
篮球 胜分差 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─single |
int32 |
足球胜平负单关、篮球胜负单关 |
- |
└─single2 |
int32 |
足球让球单关、篮球让分胜负单关 |
- |
└─single3 |
int32 |
篮球大小分 |
- |
└─matchRate |
string |
支持率 hSupportRate=主支持率、 dSupportRate=平支持率、 aSupportRate=客支持率 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"lotteryId": 0,
"classify": 0,
"league": "",
"leagueShort": "",
"leagueCode": "",
"issue": "",
"issueNum": "",
"home": "",
"homeLogo": "",
"homeEn": "",
"homeShort": "",
"homeRank": "",
"homeScore": 0,
"homeCode": "",
"halfHomeScore": 0,
"away": "",
"awayLogo": "",
"awayRank": "",
"awayEn": "",
"awayShort": "",
"awayScore": 0,
"awayCode": "",
"halfAwayScore": 0,
"matchTime": "",
"sellStatus": 0,
"spf": "",
"spf2": "",
"rq": "",
"rq2": "",
"bf": "",
"bf2": "",
"jq": "",
"jq2": "",
"bqc": "",
"bqc2": "",
"sf": "",
"sf2": "",
"rf": "",
"rf2": "",
"dxf": "",
"dxf2": "",
"sfc": "",
"sfc2": "",
"single": 0,
"single2": 0,
"single3": 0,
"matchRate": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/lotteryList?languageId=zh&date=2023-08-01&classify=1
6.4. 获取竞彩比赛开奖结果
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
date |
|
string |
false |
日期 |
|
classify |
int32 |
false |
1足球 2篮球 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─lotteryId |
int32 |
竞彩ID |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─leagueCode |
string |
联赛编号 |
- |
└─issue |
string |
彩票期号 日期 |
- |
└─issueNum |
string |
序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeEn |
string |
主队英文简称 |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─homeScore |
int32 |
主队比分 |
- |
└─homeCode |
string |
主队编号 |
- |
└─halfHomeScore |
int32 |
主队半场比分 |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayRank |
string |
客队排名 |
- |
└─awayEn |
string |
客队英文简称 |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayScore |
int32 |
客队比分 |
- |
└─awayCode |
string |
客队编号 |
- |
└─halfAwayScore |
int32 |
客队半场比分 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─sellStatus |
int32 |
销售状态码 状态码:0-未开售、1-仅过关、2-单关和过关、3-无/停售,4-已开奖, |
- |
└─spf |
string |
足球 胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间, |
- |
└─spf2 |
string |
足球 胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─rq |
string |
足球 让球胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─rq2 |
string |
足球 让球胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bf |
string |
足球 比分: s00s00=0:0, s00s01=0:1, s00s02=0:2, s1sa=负其他, s1sd=平其他, s1sh=胜其他, updateDate 更新日期, updateTime 更新时间 |
- |
└─bf2 |
string |
足球 比分 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─jq |
string |
足球 进球总数: s0=0球, s1=1球, s2=2球, s7=7+, updateDate 更新日期, updateTime 更新时间 |
- |
└─jq2 |
string |
足球 进球总数 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─bqc |
string |
足球 半全场胜平负: aa=负负, ad=负平, ah=负胜, da=平负, dd=平平, dh=平胜, ha=胜负, hd=胜平, hh=胜胜, updateDate 更新日期, updateTime 更新时间 |
- |
└─bqc2 |
string |
足球 半全场胜平负 开奖结果: code 编号, combination 结果 H D A, combinationDesc 描述, goalLine 让球, odds 指数 |
- |
└─sf |
string |
篮球 胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sf2 |
string |
篮球 胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─rf |
string |
篮球 让分胜负: h=胜, a=负, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─rf2 |
string |
篮球 让分胜负 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─dxf |
string |
篮球 大小分: h=大, l=小, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─dxf2 |
string |
篮球 大小分 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数, |
- |
└─sfc |
string |
篮球 胜分差: w1=胜1, l1=负1, goalLine 让分, updateDate 更新日期, updateTime 更新时间 |
- |
└─sfc2 |
string |
篮球 胜分差 开奖结果: combination 结果 H D A, combinationDesc 描述, goalLine 让分, winOdds 指数 |
- |
└─single |
int32 |
足球胜平负单关、篮球胜负单关 |
- |
└─single2 |
int32 |
足球让球单关、篮球让分胜负单关 |
- |
└─single3 |
int32 |
篮球大小分 |
- |
└─matchRate |
string |
支持率 hSupportRate=主支持率、 dSupportRate=平支持率、 aSupportRate=客支持率 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"lotteryId": 0,
"classify": 0,
"league": "",
"leagueShort": "",
"leagueCode": "",
"issue": "",
"issueNum": "",
"home": "",
"homeLogo": "",
"homeEn": "",
"homeShort": "",
"homeRank": "",
"homeScore": 0,
"homeCode": "",
"halfHomeScore": 0,
"away": "",
"awayLogo": "",
"awayRank": "",
"awayEn": "",
"awayShort": "",
"awayScore": 0,
"awayCode": "",
"halfAwayScore": 0,
"matchTime": "",
"sellStatus": 0,
"spf": "",
"spf2": "",
"rq": "",
"rq2": "",
"bf": "",
"bf2": "",
"jq": "",
"jq2": "",
"bqc": "",
"bqc2": "",
"sf": "",
"sf2": "",
"rf": "",
"rf2": "",
"dxf": "",
"dxf2": "",
"sfc": "",
"sfc2": "",
"single": 0,
"single2": 0,
"single3": 0,
"matchRate": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/lotteryResultList?languageId=zh&date=2023-08-01&classify=1
6.5. 获取北单比赛指数
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
issue |
string |
false |
期号(不传默认最新一期) |
||
classify |
int32 |
false |
1足球 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─issueNo |
string |
期号 |
- |
└─issue |
string |
日期 |
- |
└─dataList |
array |
数据 |
- |
└─lotteryId |
int32 |
北单 |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─issueNo |
string |
彩票期号 |
- |
└─issue |
string |
彩票日期 |
- |
└─issueNum |
string |
序号 |
- |
└─issueNum2 |
string |
胜负过关序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayRank |
string |
客队排名 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─sellStatus |
int32 |
销售状态码 顺序:胜平负,总进球,半全场,上下单双盘,比分 状态码:0-未开售、1-销售中、2-未知状态、3-已停售、4-已开奖 |
- |
└─homeScore |
int32 |
主队比分 |
- |
└─halfHomeScore |
int32 |
主队半场比分 |
- |
└─awayScore |
int32 |
客队比分 |
- |
└─halfAwayScore |
int32 |
客队半场比分 |
- |
└─spf |
string |
胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─spf2 |
string |
胜平负 开奖结果: 3=主胜,1=平,0=客胜 |
- |
└─rq |
string |
胜负: h=胜, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─rq2 |
string |
胜负 开奖结果: 3=主胜,0=客胜 |
- |
└─bf |
string |
比分: s00s00=0:0, s00s01=0:1, s00s02=0:2, s1sa=负其他, s1sd=平其他, s1sh=胜其他, updateDate 更新日期, updateTime 更新时间 |
- |
└─bf2 |
string |
比分 开奖结果: 0=1:0,1=2:0,2=2:1,3=3:0,4=3:1,5=3:2,6=4:0,7=4:1,8=4:2,9=胜其他, 10=0:0,11=1:1,12=2:2,13=3:3,14=平其他, 15=0:1,16=0:2,17=1:2,18=0:3,19=1:3,20=2:3,21=0:4,22=1:4,23=2:4,24=负其他, |
- |
└─jq |
string |
进球: s0=0球, s1=1球, s2=2球, s7=7+, updateDate 更新日期, updateTime 更新时间 |
- |
└─jq2 |
string |
进球 开奖结果: 0球、1球、2球、3球、4球、5球、6球、7+球 |
- |
└─bqc |
string |
半全场: aa=负负, ad=负平, ah=负胜, da=平负, dd=平平, dh=平胜, ha=胜负, hd=胜平, hh=胜胜, updateDate 更新日期, updateTime 更新时间 |
- |
└─bqc2 |
string |
半全场 开奖结果: 0=胜胜、1=胜平、2=胜负、3=平胜、4=平平、5=平负、6负胜、7=负平、8=负负 |
- |
└─sxp |
string |
上下盘单双: |
- |
└─sxp2 |
string |
上下盘单双 开奖结果: 1=上+单、2=上+双、3=下+单、4=下+双 |
- |
└─matchId |
int32 |
关联Id |
- |
└─matchTimeLong |
int64 |
比赛时间戳 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"issueNo": "",
"issue": "",
"dataList": [
{
"lotteryId": 0,
"classify": 0,
"league": "",
"leagueShort": "",
"issueNo": "",
"issue": "",
"issueNum": "",
"issueNum2": "",
"home": "",
"homeLogo": "",
"homeShort": "",
"homeRank": "",
"away": "",
"awayLogo": "",
"awayShort": "",
"awayRank": "",
"matchTime": "",
"sellStatus": 0,
"homeScore": 0,
"halfHomeScore": 0,
"awayScore": 0,
"halfAwayScore": 0,
"spf": "",
"spf2": "",
"rq": "",
"rq2": "",
"bf": "",
"bf2": "",
"jq": "",
"jq2": "",
"bqc": "",
"bqc2": "",
"sxp": "",
"sxp2": "",
"matchId": 0,
"matchTimeLong": 0
}
]
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/beiDanList?languageId=zh&classify=0&issue=
6.6. 获取北单比赛开奖结果
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
issue |
string |
false |
期号(不传默认最新一期) |
||
classify |
int32 |
false |
1足球 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─issueNo |
string |
期号 |
- |
└─issue |
string |
日期 |
- |
└─dataList |
array |
数据 |
- |
└─lotteryId |
int32 |
北单 |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─issueNo |
string |
彩票期号 |
- |
└─issue |
string |
彩票日期 |
- |
└─issueNum |
string |
序号 |
- |
└─issueNum2 |
string |
胜负过关序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayRank |
string |
客队排名 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─sellStatus |
int32 |
销售状态码 顺序:胜平负,总进球,半全场,上下单双盘,比分 状态码:0-未开售、1-销售中、2-未知状态、3-已停售、4-已开奖 |
- |
└─homeScore |
int32 |
主队比分 |
- |
└─halfHomeScore |
int32 |
主队半场比分 |
- |
└─awayScore |
int32 |
客队比分 |
- |
└─halfAwayScore |
int32 |
客队半场比分 |
- |
└─spf |
string |
胜平负: h=胜, d=平, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─spf2 |
string |
胜平负 开奖结果: 3=主胜,1=平,0=客胜 |
- |
└─rq |
string |
胜负: h=胜, a=负, goalLine 让球, updateDate 更新日期, updateTime 更新时间 |
- |
└─rq2 |
string |
胜负 开奖结果: 3=主胜,0=客胜 |
- |
└─bf |
string |
比分: s00s00=0:0, s00s01=0:1, s00s02=0:2, s1sa=负其他, s1sd=平其他, s1sh=胜其他, updateDate 更新日期, updateTime 更新时间 |
- |
└─bf2 |
string |
比分 开奖结果: 0=1:0,1=2:0,2=2:1,3=3:0,4=3:1,5=3:2,6=4:0,7=4:1,8=4:2,9=胜其他, 10=0:0,11=1:1,12=2:2,13=3:3,14=平其他, 15=0:1,16=0:2,17=1:2,18=0:3,19=1:3,20=2:3,21=0:4,22=1:4,23=2:4,24=负其他, |
- |
└─jq |
string |
进球: s0=0球, s1=1球, s2=2球, s7=7+, updateDate 更新日期, updateTime 更新时间 |
- |
└─jq2 |
string |
进球 开奖结果: 0球、1球、2球、3球、4球、5球、6球、7+球 |
- |
└─bqc |
string |
半全场: aa=负负, ad=负平, ah=负胜, da=平负, dd=平平, dh=平胜, ha=胜负, hd=胜平, hh=胜胜, updateDate 更新日期, updateTime 更新时间 |
- |
└─bqc2 |
string |
半全场 开奖结果: 0=胜胜、1=胜平、2=胜负、3=平胜、4=平平、5=平负、6负胜、7=负平、8=负负 |
- |
└─sxp |
string |
上下盘单双: |
- |
└─sxp2 |
string |
上下盘单双 开奖结果: 1=上+单、2=上+双、3=下+单、4=下+双 |
- |
└─matchId |
int32 |
关联Id |
- |
└─matchTimeLong |
int64 |
比赛时间戳 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"issueNo": "",
"issue": "",
"dataList": [
{
"lotteryId": 0,
"classify": 0,
"league": "",
"leagueShort": "",
"issueNo": "",
"issue": "",
"issueNum": "",
"issueNum2": "",
"home": "",
"homeLogo": "",
"homeShort": "",
"homeRank": "",
"away": "",
"awayLogo": "",
"awayShort": "",
"awayRank": "",
"matchTime": "",
"sellStatus": 0,
"homeScore": 0,
"halfHomeScore": 0,
"awayScore": 0,
"halfAwayScore": 0,
"spf": "",
"spf2": "",
"rq": "",
"rq2": "",
"bf": "",
"bf2": "",
"jq": "",
"jq2": "",
"bqc": "",
"bqc2": "",
"sxp": "",
"sxp2": "",
"matchId": 0,
"matchTimeLong": 0
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/beiDanResultList?languageId=zh&classify=1&issue=
6.7. 获取比分直播
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
classify |
int32 |
false |
1竞彩足球、2竞彩篮球、3北单 |
||
date |
string |
false |
日期或者期号,不传默认当期 |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─lotteryId |
string |
竞彩足球 |
- |
└─classify |
int32 |
1足球,2篮球 |
- |
└─league |
string |
赛事名称 |
- |
└─leagueShort |
string |
赛事简称 |
- |
└─leagueCode |
string |
联赛编号 |
- |
└─issue |
string |
彩票期号 日期 |
- |
└─issueNum |
string |
序号 |
- |
└─home |
string |
主队名称 |
- |
└─homeId |
string |
主队ID |
- |
└─homeEn |
string |
主队英文简称 |
- |
└─homeLogo |
string |
主队Logo |
- |
└─homeShort |
string |
主队简称 |
- |
└─homeRank |
string |
主队排名 |
- |
└─homeScore |
string |
主队比分 |
- |
└─homeCode |
string |
主队编号 |
- |
└─halfHomeScore |
string |
客队半场比分 |
- |
└─awayId |
string |
客队ID |
- |
└─away |
string |
客队名称 |
- |
└─awayLogo |
string |
客队Logo |
- |
└─awayRank |
string |
客队排名 |
- |
└─awayEn |
string |
客队英文简称 |
- |
└─awayShort |
string |
客队简称 |
- |
└─awayScore |
string |
客队比分 |
- |
└─awayCode |
string |
客队编号 |
- |
└─halfAwayScore |
string |
主队半场比分 |
- |
└─matchTime |
string |
比赛时间 |
- |
└─goalline |
string |
让球 |
- |
└─minute |
string |
分钟 |
- |
└─minute_extra |
string |
加时 |
- |
└─a |
string |
负 |
- |
└─d |
string |
平 |
- |
└─h |
string |
胜 |
- |
└─ha |
string |
负 |
- |
└─hd |
string |
平 |
- |
└─hh |
string |
胜 |
- |
└─status |
int32 |
足球状态0未开始,1上半场,2中场,3下半场,4加时,5点球,10完场,11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 篮球状态0未开始,1第一节,2第二节,3中场,4第三节,5第四节,6加时,7休息, 11取消,12暂停,13推迟,14延迟,15腰斩,16中断,17退赛,18待定,99删除 |
- |
└─sf |
string |
篮球胜负 |
- |
└─rf |
string |
篮球让分胜负 |
- |
└─dxf |
string |
篮球大小分 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"lotteryId": "",
"classify": 0,
"league": "",
"leagueShort": "",
"leagueCode": "",
"issue": "",
"issueNum": "",
"home": "",
"homeId": "",
"homeEn": "",
"homeLogo": "",
"homeShort": "",
"homeRank": "",
"homeScore": "",
"homeCode": "",
"halfHomeScore": "",
"awayId": "",
"away": "",
"awayLogo": "",
"awayRank": "",
"awayEn": "",
"awayShort": "",
"awayScore": "",
"awayCode": "",
"halfAwayScore": "",
"matchTime": "",
"goalline": "",
"minute": "",
"minute_extra": "",
"a": "",
"d": "",
"h": "",
"ha": "",
"hd": "",
"hh": "",
"status": 0,
"sf": "",
"rf": "",
"dxf": ""
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/liveList?languageId=zh&classify=1&date=
6.8. 获取比赛积分、交战信息
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
classify |
int32 |
false |
1竞彩足球、2竞彩篮球、3北单 |
||
matchId |
string |
false |
比賽id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
object |
数据 |
- |
└─matchInfo |
string |
比赛信息 |
- |
└─teamScore |
string |
积分 |
- |
└─homeRecData |
array |
主队历史比赛 |
- |
└─league |
string |
联赛 |
- |
└─group |
string |
轮次 |
- |
└─time |
string |
时间 |
- |
└─home |
string |
主队 |
- |
└─away |
string |
客队 |
- |
└─score |
string |
比分 |
- |
└─halfScore |
string |
半场比分 |
- |
└─awayRecData |
array |
客队历史比赛 |
- |
└─league |
string |
联赛 |
- |
└─group |
string |
轮次 |
- |
└─time |
string |
时间 |
- |
└─home |
string |
主队 |
- |
└─away |
string |
客队 |
- |
└─score |
string |
比分 |
- |
└─halfScore |
string |
半场比分 |
- |
└─homeFutureMatches |
array |
主队未来比赛 |
- |
└─league |
string |
联赛 |
- |
└─group |
string |
轮次 |
- |
└─time |
string |
时间 |
- |
└─home |
string |
主队 |
- |
└─away |
string |
客队 |
- |
└─score |
string |
比分 |
- |
└─halfScore |
string |
半场比分 |
- |
└─awayFutureMatches |
array |
客队未来比赛 |
- |
└─league |
string |
联赛 |
- |
└─group |
string |
轮次 |
- |
└─time |
string |
时间 |
- |
└─home |
string |
主队 |
- |
└─away |
string |
客队 |
- |
└─score |
string |
比分 |
- |
└─halfScore |
string |
半场比分 |
- |
└─resultHis |
array |
两队历史交锋 |
- |
└─league |
string |
联赛 |
- |
└─group |
string |
轮次 |
- |
└─time |
string |
时间 |
- |
└─home |
string |
主队 |
- |
└─away |
string |
客队 |
- |
└─score |
string |
比分 |
- |
└─halfScore |
string |
半场比分 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": {
"matchInfo": "",
"teamScore": "",
"homeRecData": [
{
"league": "",
"group": "",
"time": "",
"home": "",
"away": "",
"score": "",
"halfScore": ""
}
],
"awayRecData": [
{
"league": "",
"group": "",
"time": "",
"home": "",
"away": "",
"score": "",
"halfScore": ""
}
],
"homeFutureMatches": [
{
"league": "",
"group": "",
"time": "",
"home": "",
"away": "",
"score": "",
"halfScore": ""
}
],
"awayFutureMatches": [
{
"league": "",
"group": "",
"time": "",
"home": "",
"away": "",
"score": "",
"halfScore": ""
}
],
"resultHis": [
{
"league": "",
"group": "",
"time": "",
"home": "",
"away": "",
"score": "",
"halfScore": ""
}
]
},
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/liveInfo?languageId=zh&classify=1&matchId=1
6.9. 获取百家指数
Type: GET
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Description: 建议每60S更新
Request-headers:
| Header | Value | Type | Required | Description | |
|---|---|---|---|---|---|
token |
|
string |
true |
token(传商户KEY)仅供测试,正式站请设置IP |
Query-parameters:
| Parameter | Value | Type | Required | Description | |
|---|---|---|---|---|---|
languageId |
string |
false |
No comments found. |
||
classify |
int32 |
false |
1竞彩足球、2竞彩篮球、3北单 |
||
matchId |
string |
false |
比賽id |
Response-fields:
| Field | Type | Description | Since |
|---|---|---|---|
success |
boolean |
是否成功 |
- |
message |
string |
提示信息 |
- |
data |
array |
数据 |
- |
└─oddsType |
int32 |
玩法 1欧赔、2亚赔、3大小 |
- |
└─oddsList |
array |
指数 |
- |
└─sort |
string |
排序 |
- |
└─name |
string |
公司 |
- |
└─firstOdds |
string |
初始赔率 |
- |
└─lastOdds |
string |
最新赔率 |
- |
└─probability |
string |
最新概率 |
- |
└─kailiIndex |
string |
凯里指数 |
- |
code |
string |
编码 |
- |
timestamp |
int64 |
时间 |
- |
Response-example:
{
"success": true,
"message": "",
"data": [
{
"oddsType": 0,
"oddsList": [
{
"sort": "",
"name": "",
"firstOdds": "",
"lastOdds": "",
"probability": "",
"kailiIndex": ""
}
]
}
],
"code": "",
"timestamp": 0
}
Curl-example:
curl -X GET -k -H 'token:传商户KEY' -i https://lottery.superscore.cn/football/lottery/liveOdds?languageId=zh&classify=1&matchId=1