# High Edge Value Bets

**Use case:** 

Only bets paying at least five percent above fair. Large edges are more often a mismatch than a gift, so every row here carries a warning explaining what to check: a stale price, a different line, or a long shot flattered by removing the margin proportionally.

## 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": 5,
  "minPinnacleLimit": 0,
  "daysAhead": 7,
  "maxBets": 150
}
```

## 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`).
