# La Liga Football News Scraper (Spain)

**Use case:** 

Scrape the latest La Liga football news from Google News in Spain, in Spanish. Get titles, sources, and links. Export to JSON, CSV, or Excel.

## Input

```json
{
  "searches": [
    {
      "keyword": "La Liga",
      "country": "ES",
      "language": "es"
    },
    {
      "keyword": "Real Madrid",
      "country": "ES",
      "language": "es"
    },
    {
      "keyword": "Barcelona",
      "country": "ES",
      "language": "es"
    }
  ],
  "limitMultipleResults": 20
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "date": {
    "label": "Published Date",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google News Scraper](https://apify.com/vulnv/google-news-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vulnv/google-news-scraper) to learn more, explore other use cases, and run it yourself.