2026世界杯赛程与积分榜

赛程更新时间:加载中...
积分榜更新时间:加载中...
加载中...
加载中...

世界杯数据 API

免费提供世界杯赛程与积分榜 JSON 数据接口。

赛程接口

返回字段

字段 说明
update_time更新时间
matches比赛列表
host_team_name主队名称
guest_team_name客队名称
host_team_score主队比分
guest_team_score客队比分
date_time比赛时间
group_name所属小组
match_des比赛状态

积分榜接口

返回字段

字段 说明
update_time更新时间
team_group小组名称
team_name球队名称
team_logo球队LOGO
win
draw
lose
score积分
goal进球
miss_goal失球
rank排名

JavaScript 调用示例

fetch('/data/worldcup2026_rank_flat.json')
.then(res => res.json())
.then(data => {
    console.log(data);
});

Python 调用示例

import requests

url = "http://103.60.148.122/data/worldcup2026_rank_flat.json"

data = requests.get(url).json()

print(data["update_time"])