Endpoint Playground
Test Crawlora's DraftKings Sportsbook live events API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/live" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"source_url": "https://sportsbook.draftkings.com/live",
"fetched_at": "2026-08-15T10:00:00Z",
"events": [
{
"id": "34525244",
"league_id": "104557",
"sport_id": "6",
"name": "A. Casanova / Parizzia vs N. Hipfl / C. Mueller",
"status": "STARTED",
"period": "2nd",
"score": {
"current": {
"home": "30",
"away": "30"
},
"periods": [
{
"name": "1",
"home": "6",
"away": "4"
}
],
"on_serve": "away"
},
"categories": [
{
"id": "488",
"name": "Match Lines"
}
],
"subcategories": [
{
"id": "6364",
"category_id": "488",
"name": "Moneyline"
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the live events currently shown by DraftKings Sportsbook, including score state, period, primary markets, and market categories that can be used with /draftkings/sportsbook/event-markets. An empty `events` list is valid when DraftKings has no live events at request time.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"source_url": "https://sportsbook.draftkings.com/live",
"fetched_at": "2026-08-15T10:00:00Z",
"events": [
{
"id": "34525244",
"league_id": "104557",
"sport_id": "6",
"name": "A. Casanova / Parizzia vs N. Hipfl / C. Mueller",
"status": "STARTED",
"period": "2nd",
"score": {
"current": {
"home": "30",
"away": "30"
},
"periods": [
{
"name": "1",
"home": "6",
"away": "4"
}
],
"on_serve": "away"
},
"categories": [
{
"id": "488",
"name": "Match Lines"
}
],
"subcategories": [
{
"id": "6364",
"category_id": "488",
"name": "Moneyline"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/live" \
-H "x-api-key: $CRAWLORA_API_KEY"