# Livesport Soccer Scores Scraper

**Use case:** 

Scrape today's Livesport soccer scores, fixtures, results, teams, leagues, match IDs, and URLs into a clean dataset.

## Input

```json
{
  "sportId": 1,
  "sportName": "soccer",
  "dateOffsets": [
    0
  ],
  "mode": "all",
  "maxItems": 100,
  "countryFilter": "",
  "leagueFilter": "",
  "includeOddsLinks": false
}
```

## Output

```json
{
  "sportName": {
    "label": "Sport"
  },
  "country": {
    "label": "Country"
  },
  "league": {
    "label": "League"
  },
  "matchId": {
    "label": "Match ID"
  },
  "homeTeam": {
    "label": "Home"
  },
  "awayTeam": {
    "label": "Away"
  },
  "homeScore": {
    "label": "Home score"
  },
  "awayScore": {
    "label": "Away score"
  },
  "statusText": {
    "label": "Status"
  },
  "startTimestamp": {
    "label": "Start"
  },
  "matchUrl": {
    "label": "Match URL"
  },
  "oddsLinks": {
    "label": "Odds links"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Livesport Scores & Fixtures Scraper](https://apify.com/automation-lab/livesport-scores-fixtures-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/livesport-scores-fixtures-scraper) to learn more, explore other use cases, and run it yourself.