# Scrape NBA Player Career Stats (2023-2024 Season)

**Use case:** 

Gather comprehensive career statistics for all NBA players from the 2023-2024 season. This data is crucial for fantasy sports analysis, sports betting models, a

## Input

```json
{
  "leagues": [
    "nba"
  ],
  "season": 2024,
  "fetchPlayerStats": true,
  "maxItems": 5000
}
```

## 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.