/v1/fixtures
Fixtures & results
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
},
{
…