Draftkings Odds API

Access Draftkings odds via OddsPapi. No scraping, no commercial account required.

Live Odds
Soft
US

Get Free API Key

About Draftkings

DraftKings is one of the largest US-licensed sportsbooks, operating legally across 20+ states. Originally a daily fantasy sports platform, DraftKings has expanded into a full sportsbook offering extensive player props, same-game parlays, and competitive odds on all major US sports.

DraftKings’ extensive player prop markets make their data especially valuable for developers building prop models and same-game parlay analyzers. Compare DraftKings’ prop lines against other US books to find pricing inefficiencies, or track their odds movement to gauge the US retail market sentiment.

Through OddsPapi, access DraftKings odds alongside 350+ bookmakers including sharps like Pinnacle and Singbet. Compare US-regulated book prices against offshore and sharp markets in a single API call. Free tier includes 5,000 requests per month with historical data for backtesting.

Quick Start: Access Draftkings Odds

Get started with Draftkings odds in under 5 minutes. Here’s a Python example:

import requests

API_KEY = "YOUR_API_KEY"
BASE_URL = "https://api.oddspapi.io/v4"

# Get Draftkings odds for soccer
response = requests.get(
    f"{BASE_URL}/odds",
    params={
        "apiKey": API_KEY,
        "bookmakers": "draftkings",
        "sportId": 10  # Soccer
    }
)

data = response.json()
for fixture in data.get('data', []):
    home = fixture['participants']['home']['name']
    away = fixture['participants']['away']['name']
    print(f"{home} vs {away}")

    # Access draftkings odds
    if 'draftkings' in fixture.get('bookmakerOdds', {}):
        odds = fixture['bookmakerOdds']['draftkings']
        print(f"  Markets available: {list(odds.get('markets', {}).keys())}")

Why Use OddsPapi for Draftkings Data?

Feature Direct Access OddsPapi
API Access Commercial account required Free tier available
Setup Time Days/weeks of negotiation 5 minutes
Other Bookmakers Draftkings only 346+ bookmakers
Sharp Lines Not available Pinnacle, Singbet, SBOBet
Historical Data Not available Included free

Technical Specifications

Bookmaker Slug draftkings
Live Odds Yes
Classification Soft
Data Format JSON (REST API)
WebSocket Available for live odds
Authentication API key (query parameter)

Available Markets

Access a wide range of betting markets from Draftkings through our API:

  • Match Winner – Full Time Result (1X2)
  • Over/Under – Total goals, points, etc.
  • Asian Handicap – Line betting for balanced odds
  • Both Teams to Score – Yes/No markets
  • Player Props – Individual player markets (where available)
  • Live Markets – In-play odds that update in real-time

Start Using Draftkings Data Today

Get access to Draftkings odds plus 346 other bookmakers. Free tier includes 5,000 requests per month.

  • No credit card required
  • 5-minute setup
  • Historical data included
  • WebSocket support for live odds

Get Free API Key
Read Documentation