Zum Inhalt springen
GET /v1/fixtures

Fixtures & results

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/fpl-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
            },
            {
        
…