# NFL 2022 Passing Stats Scraper

**Use case:** 

Pull 2022 NFL passing stats from Pro Football Reference. Get QB completions, yards, touchdowns and ratings in structured JSON.

## Input

```json
{
  "season": "2022",
  "maxItems": 5
}
```

## Output

```json
{
  "playerName": {
    "label": "Player Name",
    "format": "text"
  },
  "playerId": {
    "label": "Player Id",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "number"
  },
  "statType": {
    "label": "Stat Type",
    "format": "text"
  },
  "gamesPlayed": {
    "label": "Games Played",
    "format": "number"
  },
  "gamesStarted": {
    "label": "Games Started",
    "format": "number"
  },
  "passingYards": {
    "label": "Passing Yards",
    "format": "number"
  },
  "passingTDs": {
    "label": "Passing T Ds",
    "format": "number"
  },
  "interceptions": {
    "label": "Interceptions",
    "format": "number"
  },
  "rushingYards": {
    "label": "Rushing Yards",
    "format": "text"
  },
  "rushingTDs": {
    "label": "Rushing T Ds",
    "format": "text"
  },
  "receivingYards": {
    "label": "Receiving Yards",
    "format": "text"
  }
}
```

## About this Actor

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