# NHL Maple Leafs Standings Scraper

**Use case:** 

Scrape current NHL standings with team records, points, wins, losses and rankings. Structured hockey stats data for every team.

## Input

```json
{
  "mode": "standings",
  "date": "",
  "teamAbbrev": "TOR",
  "teamAbbrevs": [],
  "season": "",
  "playerId": "",
  "playerIds": [],
  "seasonType": "R",
  "maxItems": 5
}
```

## Output

```json
{
  "teamAbbrev": {
    "label": "Team Abbrev",
    "format": "text"
  },
  "teamName": {
    "label": "Team Name",
    "format": "text"
  },
  "conferenceName": {
    "label": "Conference Name",
    "format": "text"
  },
  "divisionName": {
    "label": "Division Name",
    "format": "text"
  },
  "gamesPlayed": {
    "label": "Games Played",
    "format": "number"
  },
  "wins": {
    "label": "Wins",
    "format": "number"
  },
  "losses": {
    "label": "Losses",
    "format": "number"
  },
  "otLosses": {
    "label": "Ot Losses",
    "format": "number"
  },
  "recordSummary": {
    "label": "Record Summary",
    "format": "text"
  },
  "points": {
    "label": "Points",
    "format": "number"
  },
  "pointPctg": {
    "label": "Point Pctg",
    "format": "number"
  },
  "regulationWins": {
    "label": "Regulation Wins",
    "format": "number"
  },
  "regulationPlusOtWins": {
    "label": "Regulation Plus Ot Wins",
    "format": "number"
  },
  "goalDifferential": {
    "label": "Goal Differential",
    "format": "number"
  }
}
```

## About this Actor

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