# NBA Per-Game Stats Scraper

**Use case:** 

Extract NBA per-game player statistics by season from Basketball Reference. Analyze scoring, assists and rebounds for any year.

## Input

```json
{
  "season": 2024,
  "statType": "per_game",
  "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.