# Scrape NFL Odds Rows for Line Shopping

**Use case:** 

Export flat NFL odds rows for line shopping with league, game, market, selection, team, line, book, American, decimal and best price. No API key needed.

## Input

```json
{
  "leagues": [
    "NFL"
  ],
  "books": [
    "pinnacle",
    "fanduel",
    "bovada"
  ],
  "markets": [
    "moneyline",
    "spread",
    "total"
  ],
  "outputMode": "rows",
  "includeLive": true,
  "includeAlternateLines": false,
  "onlyArbitrage": false,
  "onlyValueBets": false,
  "minArbitrageProfit": 0,
  "minValueEdge": 0,
  "maxEvents": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "fanduelState": "va",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "league": {
    "label": "League",
    "format": "text"
  },
  "eventName": {
    "label": "Game",
    "format": "text"
  },
  "startTime": {
    "label": "Start",
    "format": "datetime"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "selection": {
    "label": "Selection",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "point": {
    "label": "Line",
    "format": "number"
  },
  "book": {
    "label": "Book",
    "format": "text"
  },
  "american": {
    "label": "American",
    "format": "number"
  },
  "decimal": {
    "label": "Decimal",
    "format": "number"
  },
  "impliedProbability": {
    "label": "Implied prob",
    "format": "number"
  },
  "isBestPrice": {
    "label": "Best price",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Sports Betting Odds Scraper - Live Lines, Arbitrage & +EV](https://apify.com/scrapesage/sports-betting-odds-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/sports-betting-odds-scraper) to learn more, explore other use cases, and run it yourself.