# Football Scores from FlashScore 15-Day Window

**Use case:** 

Scrape FlashScore football matches from 7 days ago through 7 days ahead. Copy the task to select basketball, tennis, hockey, or 12 other sports.

## Input

```json
{
  "sport": "football",
  "dayOffsets": [
    "-7",
    "-6",
    "-5",
    "-4",
    "-3",
    "-2",
    "-1",
    "0",
    "1",
    "2",
    "3",
    "4",
    "5",
    "6",
    "7"
  ]
}
```

## Output

```json
{
  "league": {
    "label": "League",
    "format": "text"
  },
  "home_team": {
    "label": "Home team",
    "format": "text"
  },
  "away_team": {
    "label": "Away team",
    "format": "text"
  },
  "home_score": {
    "label": "Home",
    "format": "number"
  },
  "away_score": {
    "label": "Away",
    "format": "number"
  },
  "status_time": {
    "label": "Time",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  }
}
```

## About this Actor

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