# World Cup Group A Matches Scraper

**Use case:** 

Pull all World Cup Group A fixtures, kickoff times and scores in JSON to follow one group across the tournament.

## Input

```json
{
  "mode": "matches",
  "group": "A",
  "maxItems": 50
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "stage": {
    "label": "Stage",
    "format": "text"
  },
  "group": {
    "label": "Group",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "homeTeam": {
    "label": "Home",
    "format": "text"
  },
  "homeScore": {
    "label": "H",
    "format": "number"
  },
  "awayScore": {
    "label": "A",
    "format": "number"
  },
  "awayTeam": {
    "label": "Away",
    "format": "text"
  },
  "position": {
    "label": "Pos",
    "format": "number"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "played": {
    "label": "P",
    "format": "number"
  },
  "won": {
    "label": "W",
    "format": "number"
  },
  "drawn": {
    "label": "D",
    "format": "number"
  },
  "lost": {
    "label": "L",
    "format": "number"
  },
  "points": {
    "label": "Pts",
    "format": "number"
  },
  "stadium": {
    "label": "Stadium",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [FIFA World Cup 2026 Schedule & Results Scraper](https://apify.com/scrapers_lat/fifa-worldcup-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/fifa-worldcup-scraper) to learn more, explore other use cases, and run it yourself.