# Moneyline Value Bets

**Use case:** 

Straight winner bets only, across every league in season. Moneylines are the cleanest market to compare between books, because there is no line to match: either the book pays more than the fair price for that team or it does not.

## Input

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

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