# MLB 2023 Season Schedule Scraper

**Use case:** 

Scrape the MLB 2023 season schedule with game date, game type, season, and matchup details. Export structured baseball schedule data to CSV.

## Input

```json
{
  "mode": "schedule",
  "date": "",
  "teamIds": [],
  "playerId": "",
  "playerIds": [],
  "gameType": "",
  "seasonType": "",
  "season": 2023,
  "maxItems": 50
}
```

## Output

```json
{
  "gamePk": {
    "label": "Game Pk",
    "format": "text"
  },
  "gameGuid": {
    "label": "Game Guid",
    "format": "text"
  },
  "link": {
    "label": "Link",
    "format": "link"
  },
  "gameDate": {
    "label": "Game Date",
    "format": "text"
  },
  "officialDate": {
    "label": "Official Date",
    "format": "text"
  },
  "gameType": {
    "label": "Game Type",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "date"
  },
  "seasonDisplay": {
    "label": "Season Display",
    "format": "text"
  },
  "gamedayType": {
    "label": "Gameday Type",
    "format": "text"
  },
  "tiebreaker": {
    "label": "Tiebreaker",
    "format": "text"
  },
  "seriesDescription": {
    "label": "Series Description",
    "format": "date"
  },
  "seriesGameNumber": {
    "label": "Series Game Number",
    "format": "text"
  },
  "gamesInSeries": {
    "label": "Games In Series",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "awayScore": {
    "label": "Away Score",
    "format": "text"
  },
  "homeScore": {
    "label": "Home Score",
    "format": "text"
  }
}
```

## About this Actor

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