/v1/matches
Matches & results
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/soccer-api/v1/matches" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/soccer-api/v1/matches", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/soccer-api/v1/matches");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/soccer-api/v1/matches",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 10,
"league": "eng.1",
"matches": [
{
"id": "740966",
"away": {
"id": "360",
"form": "WWDWW",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/360.png",
"team": "Manchester United",
"score": "3",
"winner": true,
"home_away": "away",
"abbreviation": "MAN"
},
"date": "2026-05-24T15:00Z",
"home": {
"id": "331",
"form": "LLWLW",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/331.png",
"team": "Brighton & Hove Albion",
"score": "0",
"winner": false,
"home_away": "home",
"abbreviation": "BHA"
},
"name": "Manchester United at Brighton & Hove Albion",
"clock": "90'+6'",
"venue": "American Express Stadium",
"status": "Full Time",
"completed": true
},
{
"id": "740967",
"away": {
"id": "380",
"form": "DDLDL",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/380.png",
"team": "Wolverhampton Wanderers",
"score": "1",
"winner": false,
"home_away": "away",
"abbreviation": "WOL"
},
"date": "2026-05-24T15:00Z",
"home": {
"id": "379",
"form": "DLDLL",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/379.png",
"team": "Burnley",
"score": "1",
"winner": false,
"home_away": "home",
"abbreviation": "BUR"
},
"name": "Wolverhampton Wanderers at Burnley",
"clock": "90'+8'",
"venue": "Turf Moor",
"status": "Full Time",
"completed": true
},
{
"id": "740968",
"away": {
"id": "359",
"form": "LWWWW",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/359.png",
"team": "Arsenal",
"score": "2",
"winner": true,
"home_away": "away",
"abbreviation": "ARS"
},
"date": "2026-05-24T15:00Z",
"home": {
"id": "384",
"form": "WLDLD",
"logo": "https://a.espncdn.com/i/teamlogos/soccer/500/384
…