Endpoint Playground
Test Crawlora's DraftKings Sportsbook futures 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/futures?league_id=<league_id>&subcategory_id=<subcategory_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league_id | string | Yes | Numeric DraftKings league id | |
| subcategory_id | string | Yes | Numeric DraftKings futures market subcategory id |
{
"code": 200,
"msg": "OK",
"data": {
"league_id": "84240",
"subcategory_id": "17279",
"league": "MLB",
"sport": "Baseball",
"count": 1,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/controldata/standalone/leagueSubcategory/v1/markets?...",
"fetched_at": "2026-08-15T12:00:00Z",
"events": [
{
"id": "8d94ea9f-2e9d-4d3a-a223-08de10dccbbe",
"name": "2026 World Series Winner",
"markets": [
{
"id": "286076444",
"type": "Winner",
"subcategory_id": "17279",
"selections": [
{
"label": "NY Yankees",
"odds": {
"american": "+350",
"decimal": "4.50",
"fractional": "7/2"
}
}
]
}
]
}
]
}
}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 league-level futures markets and selections for a specific DraftKings market category, from DraftKings' credential-free public JSON. `league_id` is a numeric DraftKings league identifier and `subcategory_id` is a numeric futures category identifier. An empty `events` list is a valid response when the category has no markets currently posted for that league.
{
"code": 200,
"msg": "OK",
"data": {
"league_id": "84240",
"subcategory_id": "17279",
"league": "MLB",
"sport": "Baseball",
"count": 1,
"source_url": "https://sportsbook-nash.draftkings.com/sites/US-NJ-SB/api/sportscontent/controldata/standalone/leagueSubcategory/v1/markets?...",
"fetched_at": "2026-08-15T12:00:00Z",
"events": [
{
"id": "8d94ea9f-2e9d-4d3a-a223-08de10dccbbe",
"name": "2026 World Series Winner",
"markets": [
{
"id": "286076444",
"type": "Winner",
"subcategory_id": "17279",
"selections": [
{
"label": "NY Yankees",
"odds": {
"american": "+350",
"decimal": "4.50",
"fractional": "7/2"
}
}
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/futures?league_id=<league_id>&subcategory_id=<subcategory_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"