Endpoint Playground
Test Crawlora's DraftKings Sportsbook event markets 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-markets?event_id=<event_id>&subcategory_id=<subcategory_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| event_id | string | Yes | Numeric DraftKings event id | |
| subcategory_id | string | Yes | Numeric DraftKings market subcategory id |
{
"code": 200,
"msg": "OK",
"data": {
"event_id": "34497667",
"subcategory_id": "6354",
"count": 2,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/controldata/event/eventSubcategory/v1/markets?...",
"fetched_at": "2026-08-15T12:00:00Z",
"markets": [
{
"id": "1_85808096",
"type": "First To Score",
"subcategory_id": "6354",
"selections": [
{
"label": "Collingwood Magpies",
"odds": {
"american": "+110",
"decimal": "2.10",
"fractional": "11/10"
},
"outcome_type": "Away"
},
{
"label": "Hawthorn Hawks",
"odds": {
"american": "-145",
"decimal": "1.68",
"fractional": "20/29"
},
"outcome_type": "Home"
}
]
}
]
}
}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 betting markets and selections for a specific market category, from DraftKings' credential-free public JSON. `event_id` is a numeric DraftKings event identifier (find it from the `id` field of an event returned by /draftkings/sportsbook/odds). `subcategory_id` selects the market category (e.g. game lines, a player-prop category, an alternate-line category) -- find one from the `subcategory_id` field on a market returned by /draftkings/sportsbook/odds, or from a DraftKings Sportsbook event page's own network traffic. An empty `markets` list is a valid response when the category has no markets currently posted for this event.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": "34497667",
"subcategory_id": "6354",
"count": 2,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/controldata/event/eventSubcategory/v1/markets?...",
"fetched_at": "2026-08-15T12:00:00Z",
"markets": [
{
"id": "1_85808096",
"type": "First To Score",
"subcategory_id": "6354",
"selections": [
{
"label": "Collingwood Magpies",
"odds": {
"american": "+110",
"decimal": "2.10",
"fractional": "11/10"
},
"outcome_type": "Away"
},
{
"label": "Hawthorn Hawks",
"odds": {
"american": "-145",
"decimal": "1.68",
"fractional": "20/29"
},
"outcome_type": "Home"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/event-markets?event_id=<event_id>&subcategory_id=<subcategory_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"