/v1/matches/{id}Retrieve a match
The match summary: league, teams, score, status, referee, and stadium.
idstringrequired- Match ID, for example m_B8x2K9
curl https://api.pitchapi.dev/v1/matches/{id} \ -H "X-API-KEY: $PITCH_KEY"
{
"data": {
"id": "m_B8x2K9",
"league": {
"id": "l_4Kd0Wq",
"name": "Premier League",
"image_url": "https://cdn.pitchapi.dev/leagues/47.webp"
},
"home_team": {
"id": "t_9aB2xQ",
"name": "Manchester City",
"image_url": "https://cdn.pitchapi.dev/teams/8456.webp"
},
"away_team": {
"id": "t_2mLp7C",
"name": "Manchester United",
"image_url": "https://cdn.pitchapi.dev/teams/10260.webp"
},
"date": "2025-11-09",
"time_utc": "2025-11-09T16:30:00Z",
"status": "finished",
"score_home": 3,
"score_away": 1,
"round_name": "11",
"has_playoff": false,
"referee": "Michael Oliver",
"stadium": "Etihad Stadium"
}
}