# Scrape Premier League Player Stats for 2023-2024

**Use case:** 

Extract detailed player statistics for the Premier League 2023-2024 season, including goals, assists, and appearances. This data is crucial for fantasy football

## Input

```json
{
  "mode": "playerStats",
  "league": "premier-league",
  "season": "2023-2024",
  "maxItems": 100
}
```

## Output

```json
{
  "playerName": {
    "label": "Player name"
  },
  "team": {
    "label": "Team"
  },
  "position": {
    "label": "Position"
  },
  "league": {
    "label": "League"
  },
  "season": {
    "label": "Season"
  },
  "appearances": {
    "label": "Appearances"
  },
  "goals": {
    "label": "Goals"
  },
  "assists": {
    "label": "Assists"
  },
  "xg": {
    "label": "Xg"
  },
  "playerUrl": {
    "label": "Player url"
  }
}
```

## About this Actor

This example demonstrates how to use [FBref Football Statistics Scraper](https://apify.com/crawlerbros/fbref-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/fbref-scraper) to learn more, explore other use cases, and run it yourself.