# Baseball Reference RBI Leaders Scraper

**Use case:** 

Extract MLB RBI leaders from Baseball Reference with player names and stats as structured JSON for analysis.

## Input

```json
{
  "statType": "RBI",
  "maxItems": 5
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "playerName": {
    "label": "Player Name",
    "format": "text"
  },
  "playerUrl": {
    "label": "Player Url",
    "format": "link"
  },
  "season": {
    "label": "Season",
    "format": "number"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "plateAppearances": {
    "label": "Plate Appearances",
    "format": "number"
  },
  "bats": {
    "label": "Bats",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  },
  "statType": {
    "label": "Stat Type",
    "format": "text"
  },
  "statLabel": {
    "label": "Stat Label",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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