# MLB Baseball Moneyline Odds Scraper

**Use case:** 

Retrieve American Moneyline odds for MLB games, including opening and finished match odds from OddsPortal.com.

## Input

```json
{
  "leagueUrls": [
    {
      "url": "https://www.oddsportal.com/baseball/usa/mlb/"
    }
  ],
  "fullOdds": false,
  "oddsFormat": "Money Line",
  "markets": [
    "Over/Under",
    "Asian Handicap"
  ],
  "marketScope": "Full Time",
  "includeOpeningOdds": true,
  "includeFinished": true,
  "maxMatches": 0,
  "detailConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "home": {
    "label": "Home"
  },
  "away": {
    "label": "Away"
  },
  "homeWinOdds": {
    "label": "1 avg"
  },
  "drawOdds": {
    "label": "X avg"
  },
  "awayWinOdds": {
    "label": "2 avg"
  },
  "homeWinOddsMax": {
    "label": "1 max"
  },
  "drawOddsMax": {
    "label": "X max"
  },
  "awayWinOddsMax": {
    "label": "2 max"
  },
  "bookmakerCount": {
    "label": "Bookies"
  },
  "oddsFormat": {
    "label": "Format"
  }
}
```

## About this Actor

This example demonstrates how to use [OddsPortal.com Scraper | 1$/1k Cheap](https://apify.com/trev0n/oddsportal-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/trev0n/oddsportal-com-scraper) to learn more, explore other use cases, and run it yourself.