# No-Vig Fair Odds

**Use case:** 

Every line where a soft book matches or beats the fair price, including the ones with almost no edge. Each row carries the fair odds, the implied probability and the margin that was removed, which makes this the widest view of what the sharp price actually is rather than a shortlist of bets.

## Input

```json
{
  "leagues": [
    "epl",
    "laliga",
    "seriea",
    "bundesliga",
    "ligue1",
    "ucl",
    "mls",
    "nfl",
    "ncaaf",
    "nba",
    "wnba",
    "mlb",
    "nhl"
  ],
  "bookmakers": [
    "draftkings",
    "bovada",
    "unibet",
    "leovegas"
  ],
  "markets": [
    "moneyline",
    "spread",
    "total"
  ],
  "minEdgePercent": 0,
  "minPinnacleLimit": 0,
  "daysAhead": 14,
  "maxBets": 300
}
```

## Output

```json
{
  "edgePercent": {
    "label": "Edge %"
  },
  "bookmaker": {
    "label": "Bookmaker"
  },
  "bet": {
    "label": "Bet"
  },
  "bookmakerOddsAmerican": {
    "label": "Price"
  },
  "fairOdds": {
    "label": "Fair odds"
  },
  "fairProbabilityPercent": {
    "label": "Fair %"
  },
  "sharpOdds": {
    "label": "Pinnacle"
  },
  "game": {
    "label": "Game"
  },
  "league": {
    "label": "League"
  },
  "market": {
    "label": "Market"
  },
  "startTime": {
    "label": "Starts"
  },
  "pinnacleLimit": {
    "label": "Pinnacle limit"
  },
  "limitConfidence": {
    "label": "Confidence"
  },
  "sharpMarginPercent": {
    "label": "Sharp margin %"
  },
  "warning": {
    "label": "Warning"
  },
  "longShotCaveat": {
    "label": "Long shot note"
  }
}
```

## About this Actor

This example demonstrates how to use [Value Bet Finder: Soft Books vs Sharp Price](https://apify.com/precious_bathmat/value-bet-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/precious_bathmat/value-bet-finder.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/precious_bathmat/value-bet-finder.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
