# Scrape +EV Value Bets vs Pinnacle

**Use case:** 

Find +EV value bets that beat Pinnacle's no-vig line with league, game, start, # books, sharp ref, # +EV and best edge %. No third-party odds API key needed.

## Input

```json
{
  "leagues": [
    "NBA",
    "NFL",
    "MLB"
  ],
  "books": [
    "pinnacle",
    "fanduel",
    "bovada"
  ],
  "markets": [
    "moneyline",
    "spread",
    "total"
  ],
  "outputMode": "events",
  "includeLive": true,
  "includeAlternateLines": false,
  "onlyArbitrage": false,
  "onlyValueBets": true,
  "minArbitrageProfit": 0,
  "minValueEdge": 2,
  "maxEvents": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "fanduelState": "va",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "league": {
    "label": "League",
    "format": "text"
  },
  "eventName": {
    "label": "Game (Away @ Home)",
    "format": "text"
  },
  "startTime": {
    "label": "Start",
    "format": "datetime"
  },
  "isLive": {
    "label": "Live",
    "format": "boolean"
  },
  "bookCount": {
    "label": "# Books",
    "format": "number"
  },
  "sharpBook": {
    "label": "Sharp ref",
    "format": "text"
  },
  "arbitrageExists": {
    "label": "Arb?",
    "format": "boolean"
  },
  "bestArbitrageProfitPercent": {
    "label": "Best arb %",
    "format": "number"
  },
  "valueBetCount": {
    "label": "# +EV",
    "format": "number"
  },
  "bestValueEdgePercent": {
    "label": "Best edge %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Sports Betting Odds Scraper - Live Lines, Arbitrage & +EV](https://apify.com/scrapesage/sports-betting-odds-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/sports-betting-odds-scraper) to learn more, explore other use cases, and run it yourself.