# Upcoming Premier League Fixtures & Forecast Scraper

**Use case:** 

Scrape upcoming Premier League fixtures with kickoff times and pre-match win-probability forecasts from Understat for previews and betting models.

## Input

```json
{
  "mode": "fixtures",
  "leagues": [
    "EPL"
  ],
  "seasons": [
    "2025"
  ],
  "teams": [],
  "matchIds": [],
  "playerIds": [],
  "positions": [],
  "nLastMatches": 0,
  "dateStart": "",
  "dateEnd": "",
  "minAppearances": 0,
  "maxResults": 50,
  "maxCostUsd": 25,
  "includeRawJson": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "fixtureId": {
    "label": "ID",
    "format": "number"
  },
  "league": {
    "label": "League",
    "format": "text"
  },
  "seasonLabel": {
    "label": "Season",
    "format": "text"
  },
  "datetime": {
    "label": "Kickoff",
    "format": "text"
  },
  "homeTeam.title": {
    "label": "Home",
    "format": "text"
  },
  "awayTeam.title": {
    "label": "Away",
    "format": "text"
  },
  "forecast.winHome": {
    "label": "P(H)",
    "format": "number"
  },
  "forecast.draw": {
    "label": "P(D)",
    "format": "number"
  },
  "forecast.winAway": {
    "label": "P(A)",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Understat xG & Shot Data - Football Analytics](https://apify.com/constructive_calm/understat-football-analytics) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/understat-football-analytics) to learn more, explore other use cases, and run it yourself.