/v1/fixtures
Fixtures & 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/fpl-api/v1/fixtures" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fpl-api/v1/fixtures", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fpl-api/v1/fixtures");
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/fpl-api/v1/fixtures",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 10,
"fixtures": [
{
"id": 1,
"away": "Bournemouth",
"home": "Liverpool",
"kickoff": "2025-08-15T19:00:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 2,
"home_score": 4,
"away_difficulty": 4,
"home_difficulty": 3
},
{
"id": 2,
"away": "Newcastle",
"home": "Aston Villa",
"kickoff": "2025-08-16T11:30:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 0,
"home_score": 0,
"away_difficulty": 4,
"home_difficulty": 3
},
{
"id": 3,
"away": "Fulham",
"home": "Brighton",
"kickoff": "2025-08-16T14:00:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 1,
"home_score": 1,
"away_difficulty": 4,
"home_difficulty": 3
},
{
"id": 6,
"away": "Burnley",
"home": "Spurs",
"kickoff": "2025-08-16T14:00:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 0,
"home_score": 3,
"away_difficulty": 3,
"home_difficulty": 1
},
{
"id": 5,
"away": "West Ham",
"home": "Sunderland",
"kickoff": "2025-08-16T14:00:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 0,
"home_score": 3,
"away_difficulty": 3,
"home_difficulty": 2
},
{
"id": 7,
"away": "Man City",
"home": "Wolves",
"kickoff": "2025-08-16T16:30:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 4,
"home_score": 0,
"away_difficulty": 2,
"home_difficulty": 4
},
{
"id": 8,
"away": "Crystal Palace",
"home": "Chelsea",
"kickoff": "2025-08-17T13:00:00Z",
"started": true,
"finished": true,
"gameweek": 1,
"away_score": 0,
"home_score": 0,
"away_difficulty": 3,
"home_difficulty": 3
},
{
…