# La Liga Football Results Scraper

**Use case:** 

Scrape Spanish La Liga 2023-2024 match results. Get fixtures, scores, matchdays and teams from worldfootball.net.

## Input

```json
{
  "competition": "esp-primera-division",
  "season": "2023-2024",
  "maxItems": 5
}
```

## Output

```json
{
  "date": {
    "label": "Date",
    "format": "text"
  },
  "homeTeam": {
    "label": "Home Team",
    "format": "text"
  },
  "awayTeam": {
    "label": "Away Team",
    "format": "text"
  },
  "homeScore": {
    "label": "Home Score",
    "format": "number"
  },
  "awayScore": {
    "label": "Away Score",
    "format": "number"
  },
  "result": {
    "label": "Result",
    "format": "text"
  },
  "competition": {
    "label": "Competition",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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