# College Football Value Bets

**Use case:** 

College football is the deepest board on this Actor, because every book prices a large slate and the soft books differ most from the sharp price on smaller programmes. Each bet shows its edge over the no-vig fair price and how much Pinnacle accepts on that line.

## Input

```json
{
  "leagues": [
    "ncaaf"
  ],
  "bookmakers": [
    "draftkings",
    "bovada",
    "unibet",
    "leovegas"
  ],
  "markets": [
    "moneyline",
    "spread",
    "total"
  ],
  "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`).
