# Top IPL and Domestic T20 Batting Innings Stats

**Use case:** 

Retrieve comprehensive batting innings data for IPL and domestic T20 matches. Analyze performance with metrics like runs scored and averages.

## Input

```json
{
  "format": "t20",
  "statType": "batting",
  "view": "innings",
  "team": "",
  "opposition": "",
  "ground": "",
  "dateFrom": "",
  "dateTo": "",
  "homeOrAway": "",
  "result": "",
  "maxItems": 500,
  "orderBy": "runs",
  "orderDirection": "desc",
  "minQualification": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "player_name": {
    "label": "Player",
    "format": "string"
  },
  "runs": {
    "label": "Runs",
    "format": "number"
  },
  "not_out": {
    "label": "Not Out",
    "format": "boolean"
  },
  "balls_faced": {
    "label": "BF",
    "format": "number"
  },
  "minutes": {
    "label": "Mins",
    "format": "number"
  },
  "fours": {
    "label": "4s",
    "format": "number"
  },
  "sixes": {
    "label": "6s",
    "format": "number"
  },
  "strike_rate": {
    "label": "SR",
    "format": "number"
  },
  "innings": {
    "label": "Inns",
    "format": "number"
  },
  "opposition": {
    "label": "vs",
    "format": "string"
  },
  "ground": {
    "label": "Ground",
    "format": "string"
  },
  "match_date": {
    "label": "Date",
    "format": "string"
  },
  "format": {
    "label": "Format",
    "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.