# ESPN Cricinfo Player Career Stats Extractor

**Use case:** 

Retrieve detailed career statistics for cricket players using their unique player IDs. Get data formats in structured JSON, CSV, or Excel.

## Input

```json
{
  "mode": "playerStats",
  "playerNames": [
    "Sachin Tendulkar",
    "Kohli"
  ],
  "maxResultsPerName": 50,
  "playerIds": [
    "253802",
    "35320"
  ],
  "teams": [
    "India",
    "Australia",
    "Mumbai Indians"
  ],
  "venues": [
    "Eden Gardens",
    "Wankhede Stadium"
  ],
  "maxVenuePages": 10,
  "matchIds": [
    "1144530",
    "1426312"
  ],
  "formats": [
    "test",
    "odi",
    "t20i",
    "ipl"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "playerId": {
    "label": "Player ID",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "bornYear": {
    "label": "Born",
    "format": "integer"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "string"
  },
  "statsUrl": {
    "label": "Stats",
    "format": "string"
  }
}
```

## About this Actor

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