Skip to content
GET /v1/fixtures

Fixtures & results

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/fpl-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
            },
            {
        
…