Endpoint Playground
Test Crawlora's DraftKings Sportsbook quick links 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/quick-links" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"count": 2,
"source_url": "https://sportsbook.draftkings.com/",
"fetched_at": "2026-08-15T12:00:00Z",
"links": [
{
"name": "MLB",
"sport_id": "7",
"league_id": "84240",
"path": "/leagues/baseball/mlb"
}
]
}
}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 the ordered league shortcuts currently prioritized on DraftKings Sportsbook's public home page. Each item includes a numeric `league_id` accepted by /draftkings/sportsbook/odds and /draftkings/sportsbook/futures.
{
"code": 200,
"msg": "OK",
"data": {
"count": 2,
"source_url": "https://sportsbook.draftkings.com/",
"fetched_at": "2026-08-15T12:00:00Z",
"links": [
{
"name": "MLB",
"sport_id": "7",
"league_id": "84240",
"path": "/leagues/baseball/mlb"
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/quick-links" \
-H "x-api-key: $CRAWLORA_API_KEY"