# Bovada soccer pregame odds extractor

**Use case:** 

Export open pregame soccer markets from Bovada as normalized outcome rows with American, decimal, and fractional prices.

## Input

```json
{
  "sports": [
    "soccer"
  ],
  "startUrls": [],
  "eventFilter": "pregame",
  "openMarketsOnly": true,
  "maxItems": 250
}
```

## Output

```json
{
  "sport": {
    "label": "Sport"
  },
  "competition": {
    "label": "Competition"
  },
  "eventName": {
    "label": "Event"
  },
  "startTime": {
    "label": "Start time",
    "format": "date"
  },
  "isLive": {
    "label": "Live",
    "format": "boolean"
  },
  "homeCompetitor": {
    "label": "Home"
  },
  "awayCompetitor": {
    "label": "Away"
  },
  "displayGroup": {
    "label": "Group"
  },
  "marketName": {
    "label": "Market"
  },
  "periodName": {
    "label": "Period"
  },
  "isMainMarket": {
    "label": "Main",
    "format": "boolean"
  },
  "outcomeName": {
    "label": "Outcome"
  },
  "americanOdds": {
    "label": "American"
  },
  "decimalOdds": {
    "label": "Decimal",
    "format": "number"
  },
  "fractionalOdds": {
    "label": "Fractional"
  },
  "impliedProbability": {
    "label": "Implied probability",
    "format": "number"
  },
  "eventUrl": {
    "label": "Bovada event",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Bovada Sportsbook Odds Scraper](https://apify.com/automation-lab/bovada-sportsbook-odds-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/bovada-sportsbook-odds-scraper) to learn more, explore other use cases, and run it yourself.