# FBref La Liga 2024-25 Stats Scraper

**Use case:** 

Scrape La Liga 2024-25 player stats from FBref with name, nationality, team, position, and age. Export structured football data to JSON or CSV.

## Input

```json
{
  "league": "la-liga",
  "season": "2024-25",
  "maxItems": 50
}
```

## Output

```json
{
  "playerName": {
    "label": "Player Name",
    "format": "text"
  },
  "nationality": {
    "label": "Nationality",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "date"
  },
  "age": {
    "label": "Age",
    "format": "text"
  },
  "playerUrl": {
    "label": "Player Url",
    "format": "link"
  },
  "league": {
    "label": "League",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "date"
  },
  "gamesPlayed": {
    "label": "Games Played",
    "format": "text"
  },
  "gamesStarted": {
    "label": "Games Started",
    "format": "text"
  },
  "minutesPlayed": {
    "label": "Minutes Played",
    "format": "text"
  },
  "goals": {
    "label": "Goals",
    "format": "text"
  },
  "assists": {
    "label": "Assists",
    "format": "text"
  },
  "yellowCards": {
    "label": "Yellow Cards",
    "format": "text"
  },
  "redCards": {
    "label": "Red Cards",
    "format": "text"
  },
  "xG": {
    "label": "X G",
    "format": "text"
  }
}
```

## About this Actor

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