# Novak Djokovic Tennis Abstract match history scraper

**Use case:** 

Export recent Novak Djokovic matches, opponents, rankings, surfaces, rounds, scores, and match statistics from Tennis Abstract.

## Input

```json
{
  "playerSlugs": [
    "NovakDjokovic"
  ],
  "startUrls": [
    {
      "url": "https://www.tennisabstract.com/cgi-bin/player.cgi?p=NovakDjokovic"
    }
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "date": {
    "label": "Date",
    "format": "string"
  },
  "playerName": {
    "label": "Player",
    "format": "string"
  },
  "outcome": {
    "label": "Outcome",
    "format": "string"
  },
  "opponent": {
    "label": "Opponent",
    "format": "string"
  },
  "tournament": {
    "label": "Tournament",
    "format": "string"
  },
  "surface": {
    "label": "Surface",
    "format": "string"
  },
  "round": {
    "label": "Round",
    "format": "string"
  },
  "playerRank": {
    "label": "Player rank",
    "format": "integer"
  },
  "opponentRank": {
    "label": "Opponent rank",
    "format": "integer"
  },
  "score": {
    "label": "Score",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tennis Abstract Player Match History Scraper](https://apify.com/automation-lab/tennis-abstract-player-match-history-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tennis-abstract-player-match-history-scraper) to learn more, explore other use cases, and run it yourself.