# NFL Odds Comparison: Best Betting Odds & Arbitrage

**Use case:** 

Compare NFL betting odds from Pinnacle, DraftKings, Bovada, Unibet and LeoVegas for every game this week. See the best moneyline, spread and total price for each team, which sportsbook offers it, and any arbitrage bets with exact stakes. Line shop the whole NFL slate in one run.

## Input

```json
{
  "leagues": [
    "nfl"
  ],
  "markets": [
    "moneyline",
    "spread",
    "total"
  ],
  "bookmakers": [
    "pinnacle",
    "draftkings",
    "bovada",
    "unibet",
    "leovegas"
  ],
  "onlyArbitrage": false,
  "minBookmakers": 2,
  "daysAhead": 7
}
```

## Output

```json
{
  "startTime": {
    "label": "Start",
    "format": "date"
  },
  "league": {
    "label": "League"
  },
  "event": {
    "label": "Game"
  },
  "market": {
    "label": "Market"
  },
  "line": {
    "label": "Line",
    "format": "number"
  },
  "outcome1": {
    "label": "Outcome 1"
  },
  "outcome1BestOdds": {
    "label": "Best odds 1",
    "format": "number"
  },
  "outcome1Bookmaker": {
    "label": "Bookmaker 1"
  },
  "outcome2": {
    "label": "Outcome 2"
  },
  "outcome2BestOdds": {
    "label": "Best odds 2",
    "format": "number"
  },
  "outcome2Bookmaker": {
    "label": "Bookmaker 2"
  },
  "outcome3": {
    "label": "Outcome 3"
  },
  "outcome3BestOdds": {
    "label": "Best odds 3",
    "format": "number"
  },
  "outcome3Bookmaker": {
    "label": "Bookmaker 3"
  },
  "bookmakersCompared": {
    "label": "Bookmakers",
    "format": "number"
  },
  "isArbitrage": {
    "label": "Arbitrage",
    "format": "boolean"
  },
  "arbitrageProfitPercent": {
    "label": "Arbitrage profit %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Betting Odds Comparison: Best Price & Arbitrage Finder](https://apify.com/precious_bathmat/betting-odds-comparison.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/precious_bathmat/betting-odds-comparison.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/betting-odds-comparison.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`).
