# Test Cricket Career Batting Averages Dataset

**Use case:** 

Retrieve batting averages for Test cricket careers. Analyze top performers with a minimum of 20 innings from a dataset of up to 200 players.

## Input

```json
{
  "format": "test",
  "statType": "batting",
  "view": "overall",
  "team": "",
  "opposition": "",
  "ground": "",
  "dateFrom": "",
  "dateTo": "",
  "homeOrAway": "",
  "result": "",
  "maxItems": 200,
  "orderBy": "ave",
  "orderDirection": "desc",
  "minQualification": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "player_name": {
    "label": "Player",
    "format": "string"
  },
  "matches": {
    "label": "Mat",
    "format": "number"
  },
  "innings": {
    "label": "Inns",
    "format": "number"
  },
  "not_outs": {
    "label": "NO",
    "format": "number"
  },
  "runs": {
    "label": "Runs",
    "format": "number"
  },
  "highest_score": {
    "label": "HS",
    "format": "number"
  },
  "average": {
    "label": "Ave",
    "format": "number"
  },
  "centuries": {
    "label": "100s",
    "format": "number"
  },
  "half_centuries": {
    "label": "50s",
    "format": "number"
  },
  "ducks": {
    "label": "0s",
    "format": "number"
  },
  "wickets": {
    "label": "Wkts",
    "format": "number"
  },
  "economy": {
    "label": "Econ",
    "format": "number"
  },
  "best_bowling_innings": {
    "label": "BBI",
    "format": "string"
  },
  "span": {
    "label": "Span",
    "format": "string"
  },
  "format": {
    "label": "Format",
    "format": "string"
  },
  "stat_type": {
    "label": "Type",
    "format": "string"
  },
  "player_url": {
    "label": "Profile",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [ESPNCricinfo StatsGuru Scraper: Cricket Stats and Records](https://apify.com/getascraper/espncricinfo-statsguru-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/espncricinfo-statsguru-scraper) to learn more, explore other use cases, and run it yourself.