📦 比赛数据结构 (Match Object)
{
"match_id": "WC2026-014",
"stage": "group_stage",
"group": "A",
"date": "2026-06-14",
"time": "10:00 UTC-7",
"venue": "Los Angeles Rose Bowl",
"home_team": {
"id": "BRA",
"name": "巴西",
"flag": "🇧🇷",
"fifa_rank": 3,
"formation": "4-3-3",
"stats": {
"possession": 47,
"shots": 8,
"shots_on_target": 5,
"passes": 412,
"pass_accuracy": 83,
"fouls": 11,
"yellow_cards": 2,
"red_cards": 0,
"corners": 4,
"offsides": 2
}
},
"away_team": { /* 结构与主队一致 */ },
"score": { "home": 2, "away": 1 },
"status": "completed",
"timeline": [
{ "minute": 23, "type": "goal", "team": "home", "player": "Richarlison" },
{ "minute": 41, "type": "goal", "team": "away", "player": "Enzo Fernandez" },
{ "minute": 67, "type": "goal", "team": "home", "player": "Raphinha" }
]
}
* 数据遵循 FIFA Open Data API 规范,字段以实际接口为准。