# Compare MLB Team Rosters & Player Performance (2023)

**Use case:** 

Extract roster and basic player information for all MLB teams from the 2023 season. Use this data for historical analysis, strategic planning, and comparing tea

## Input

```json
{
  "leagues": [
    "mlb"
  ],
  "season": 2023,
  "fetchPlayerStats": false,
  "maxItems": 10000
}
```

## Output

```json
{
  "league": {
    "label": "League",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "number"
  },
  "teamName": {
    "label": "Team",
    "format": "text"
  },
  "teamAbbreviation": {
    "label": "Abbr",
    "format": "text"
  },
  "fullName": {
    "label": "Player",
    "format": "text"
  },
  "jersey": {
    "label": "#",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "displayHeight": {
    "label": "Height",
    "format": "text"
  },
  "displayWeight": {
    "label": "Weight",
    "format": "text"
  },
  "college": {
    "label": "College",
    "format": "text"
  },
  "experience": {
    "label": "Experience",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [ESPN Rosters & Player Stats](https://apify.com/crawlerbros/espn-rosters-player-stats) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/espn-rosters-player-stats) to learn more, explore other use cases, and run it yourself.