# NFL Odds API
Get current and historical NFL odds from several bookmakers in a simple JSON API.
Not a developer? Current NFL odds can also be accessed in Excel or Google Sheets.
# NFL Odds API
Once you have your API key, current NFL odds can be queried with the following parameters:
- The sport key americanfootball_nfl
- The regions of desired bookmakers (us, us2, uk, eu or au)
- Markets (h2h for moneyline, spreads or totals)
- Odds format (decimal or American)
- And your API key (get a free API key)
The API will return live and upcoming NFL games, including start times, home and away teams, and odds from bookmakers for the specified regions and markets.
Example Request
GET https://api.the-odds-api.com/v4/sports/americanfootball_nfl/odds?regions=us&markets=h2h,spreads,totals&oddsFormat=american&apiKey=YOUR_API_KEY
Example Response
[{
  "id": "42db668449664943833b5c04a583328a",
  "sport_key": "americanfootball_nfl",
  "sport_title": "NFL",
  "commence_time": "2023-09-08T00:21:00Z",
  "home_team": "Kansas City Chiefs",
  "away_team": "Detroit Lions",
  "bookmakers": [
    {
      "key": "fanduel",
      "title": "FanDuel",
      "last_update": "2023-07-18T07:38:01Z",
      "markets": [
        {
          "key": "h2h",
          "last_update": "2023-07-18T07:38:01Z",
          "outcomes": [
            {"name": "Detroit Lions", "price": 245},
            {"name": "Kansas City Chiefs", "price": -300}
          ]
        },
        {
          "key": "spreads",
          "last_update": "2023-07-18T07:38:01Z",
          "outcomes": [
            {"name": "Detroit Lions", "price": -105, "point": 6.5},
            {"name": "Kansas City Chiefs", "price": -115, "point": -6.5}
          ]
        },
        {
          "key": "totals",
          "last_update": "2023-07-18T07:38:01Z",
          "outcomes": [
            {"name": "Over", "price": -105, "point": 54.5},
            {"name": "Under", "price": -115, "point": 54.5}
          ]
        }
      ]
    },
    ...See the API documentation for more details.
# NFL Bookmakers
The Odds API covers NFL odds from several bookmakers, including:
- US Bookmakers: Draftkings, Fanduel, FoxBet, BetMGM, Caesars, Bovada, and more 
- UK Bookmakers: Unibet, William Hill, Ladbrokes, Betfair, Bet Victor, Paddy Power and more 
- EU Bookmakers: 1xBet, Pinnacle, Betclic, Betsson, Unibet and more 
- AU Bookmakers: Sportsbet, TAB, Neds, Ladbrokes, Betfair, Unibet and more 
See the full list of bookmakers
# NFL Markets
The Odds API covers NFL odds for several betting markets, including
- Moneyline 
- Spreads (handicap) 
- Over/Under (totals) 
- Quarter time and half time odds 
- NFL player props (US and AU bookmakers only) 
See the full list of betting markets.
# Latency
More information on odds latencies can be found here.
# Historical NFL Odds Data
Historical NFL odds are available from mid-2020 for featured markets (moneyline, spreads and totals). Learn more about historical odds data, or see the docs.
# Get Started
- Get a free API key 
- Check out the API docs 
# More Football Odds
Odds are available for other football leagues including
- NCAA 
- XFL 
- CFL 
- AFL 
Odds are also available for a wide range of sports. See the full list of available sports.
