# NBA Season Totals Scraper

**Use case:** 

Scrape full-season NBA total statistics from Basketball Reference. Get cumulative points, rebounds and assists for player analysis.

## Input

```json
{
  "season": 2023,
  "statType": "totals",
  "maxItems": 3
}
```

## Output

```json
{
  "playerName": {
    "label": "Player Name",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "playerUrl": {
    "label": "Player Url",
    "format": "link"
  },
  "season": {
    "label": "Season",
    "format": "number"
  },
  "statType": {
    "label": "Stat Type",
    "format": "text"
  },
  "gamesPlayed": {
    "label": "Games Played",
    "format": "number"
  },
  "minutesPerGame": {
    "label": "Minutes Per Game",
    "format": "number"
  },
  "points": {
    "label": "Points",
    "format": "number"
  },
  "assists": {
    "label": "Assists",
    "format": "number"
  },
  "rebounds": {
    "label": "Rebounds",
    "format": "number"
  },
  "steals": {
    "label": "Steals",
    "format": "number"
  },
  "blocks": {
    "label": "Blocks",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Basketball Reference Scraper | NBA Stats and History](https://apify.com/parseforge/basketball-reference-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/basketball-reference-scraper) to learn more, explore other use cases, and run it yourself.