# Track Live Tennis Scores and Odds

**Use case:** 

Get a current snapshot of live tennis matches with players, tournaments, scores, and available odds in a structured dataset.

## Input

```json
{
  "mode": "liveMatches",
  "maxMatches": 10,
  "date": "2026-07-10",
  "matchId": 16385412,
  "tournamentId": 2361,
  "seasonId": 63966,
  "playerId": 206570
}
```

## Output

```json
{
  "id": {
    "label": "Match ID",
    "format": "number"
  },
  "tournamentId": {
    "label": "Tournament ID",
    "format": "number"
  },
  "tournamentName": {
    "label": "Tournament",
    "format": "text"
  },
  "startTime": {
    "label": "Start time",
    "format": "date"
  },
  "matchType": {
    "label": "Match type",
    "format": "text"
  },
  "homePlayerName": {
    "label": "Home player",
    "format": "text"
  },
  "awayPlayerName": {
    "label": "Away player",
    "format": "text"
  },
  "homeTeamName": {
    "label": "Home team",
    "format": "text"
  },
  "awayTeamName": {
    "label": "Away team",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "object"
  },
  "odds": {
    "label": "Odds",
    "format": "object"
  },
  "error": {
    "label": "Error",
    "format": "object"
  }
}
```

## About this Actor

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