Endpoint Playground
Test Crawlora's DraftKings League 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/league-events?league_id=<league_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league_id | string | Yes | Numeric DraftKings league id |
{
"code": 200,
"msg": "OK",
"data": {
"league_id": "84240",
"league": "MLB",
"sport_id": "7",
"sport": "Baseball",
"count": 1,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/navigation/dkusnj/v2/nav/leagues/84240",
"fetched_at": "2026-08-15T12:00:00Z",
"events": [
{
"id": "34522271",
"name": "CHI White Sox @ DET Tigers",
"start_time": "2026-08-15T17:10:00.0000000Z",
"status": "NOT_STARTED",
"participant_type": "TwoTeam",
"participants": [
{
"id": "29871",
"name": "DET Tigers",
"role": "Home"
},
{
"id": "29970",
"name": "CHI White Sox",
"role": "Away"
}
],
"tags": [
"FeaturedSubcategory",
"Scoreboard"
]
}
]
}
}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 a DraftKings Sportsbook league's current public event directory, including event IDs, teams or other participants, start times, status, and public availability tags. Supply a numeric `league_id` from /draftkings/sportsbook/leagues, /draftkings/sportsbook/quick-links, /draftkings/sportsbook/featured-leagues, or /draftkings/sportsbook/event. This endpoint does not include betting markets or odds.
{
"code": 200,
"msg": "OK",
"data": {
"league_id": "84240",
"league": "MLB",
"sport_id": "7",
"sport": "Baseball",
"count": 1,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/navigation/dkusnj/v2/nav/leagues/84240",
"fetched_at": "2026-08-15T12:00:00Z",
"events": [
{
"id": "34522271",
"name": "CHI White Sox @ DET Tigers",
"start_time": "2026-08-15T17:10:00.0000000Z",
"status": "NOT_STARTED",
"participant_type": "TwoTeam",
"participants": [
{
"id": "29871",
"name": "DET Tigers",
"role": "Home"
},
{
"id": "29970",
"name": "CHI White Sox",
"role": "Away"
}
],
"tags": [
"FeaturedSubcategory",
"Scoreboard"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/league-events?league_id=<league_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"