Endpoint Playground
Test Crawlora's DraftKings Featured Leagues 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/featured-leagues" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"source_url": "https://sportsbook.draftkings.com/",
"fetched_at": "2026-08-15T12:00:00Z",
"leagues": [
{
"id": "84240",
"sport_id": "7",
"sport": "Baseball",
"name": "MLB",
"slug": "mlb",
"tags": [
"OSB",
"Featured"
],
"has_live_offers": false,
"featured_order": 4855
}
]
}
}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 public DraftKings Sportsbook leagues currently marked as featured in its sport navigation. Each item includes its numeric `id`, capability `tags`, live-offer status, and upstream featured ordering. Use the `id` as `league_id` with /draftkings/sportsbook/odds and /draftkings/sportsbook/futures.
{
"code": 200,
"msg": "OK",
"data": {
"count": 1,
"source_url": "https://sportsbook.draftkings.com/",
"fetched_at": "2026-08-15T12:00:00Z",
"leagues": [
{
"id": "84240",
"sport_id": "7",
"sport": "Baseball",
"name": "MLB",
"slug": "mlb",
"tags": [
"OSB",
"Featured"
],
"has_live_offers": false,
"featured_order": 4855
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/featured-leagues" \
-H "x-api-key: $CRAWLORA_API_KEY"