# Collect yesterday football results with match links

**Use case:** 

Pull a clean list of yesterday’s football matches, final scores, and match URLs from Flashscore for quick review or downstream analysis.

## Input

```json
{
  "sport": "football",
  "dayOffsets": [
    -1
  ],
  "date": "2026-06-26",
  "matchUrls": [],
  "detailSections": [
    "summary",
    "stats",
    "incidents",
    "lineups"
  ],
  "enrichListWithDetails": false,
  "maxResults": 10,
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "startTime": {
    "label": "Kick-off",
    "format": "string"
  },
  "sport": {
    "label": "Sport",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "league": {
    "label": "League",
    "format": "string"
  },
  "homeTeam": {
    "label": "Home",
    "format": "string"
  },
  "homeScore": {
    "label": "H",
    "format": "integer"
  },
  "awayScore": {
    "label": "A",
    "format": "integer"
  },
  "awayTeam": {
    "label": "Away",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "matchUrl": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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