# Get Wimbledon Men's Matches and Results

**Use case:** 

Extract matches, schedules, scores, and results from the latest available Wimbledon men's season in one structured dataset.

## Input

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

## Output

```json
{
  "seasonId": {
    "label": "Season ID",
    "format": "number"
  },
  "id": {
    "label": "Tournament ID",
    "format": "number"
  },
  "name": {
    "label": "Tournament",
    "format": "text"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "surface": {
    "label": "Surface",
    "format": "text"
  },
  "startTime": {
    "label": "Start time",
    "format": "date"
  },
  "endTime": {
    "label": "End time",
    "format": "date"
  },
  "titleHolder": {
    "label": "Title holder",
    "format": "object"
  },
  "mostTitles": {
    "label": "Most titles",
    "format": "object"
  },
  "matches": {
    "label": "Matches",
    "format": "array"
  },
  "tournamentId": {
    "label": "Requested tournament ID",
    "format": "number"
  },
  "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.