Endpoint Playground
Test Crawlora's DraftKings Sportsbook event 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/event?event_id=<event_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| event_id | string | Yes | Numeric DraftKings event id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "34240143",
"league_id": "24685",
"sport_id": "3",
"name": "CLE Browns @ CHI Bears",
"start_time": "2026-08-15T17:00:00.0000000Z",
"status": "NOT_STARTED",
"participants": [
{
"id": "18312",
"name": "CHI Bears",
"role": "Home"
},
{
"id": "18325",
"name": "CLE Browns",
"role": "Away"
}
],
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/pagedata/event/v1/events?eventIds=34240143",
"fetched_at": "2026-08-15T12:00:00Z"
}
}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 one event's metadata (league id, sport id, teams, status, start time) from DraftKings' credential-free public JSON. `event_id` is a numeric DraftKings event identifier (find it from an event's DraftKings Sportsbook page, or from the `id` field of an event returned by /draftkings/sportsbook/odds). The returned `league_id` is accepted by /draftkings/sportsbook/odds and /draftkings/sportsbook/futures. This endpoint does not include betting markets/odds.
{
"code": 200,
"msg": "OK",
"data": {
"id": "34240143",
"league_id": "24685",
"sport_id": "3",
"name": "CLE Browns @ CHI Bears",
"start_time": "2026-08-15T17:00:00.0000000Z",
"status": "NOT_STARTED",
"participants": [
{
"id": "18312",
"name": "CHI Bears",
"role": "Home"
},
{
"id": "18325",
"name": "CLE Browns",
"role": "Away"
}
],
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/pagedata/event/v1/events?eventIds=34240143",
"fetched_at": "2026-08-15T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/event?event_id=<event_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"