Endpoint Playground
Test Crawlora's DraftKings Sportsbook league teams 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/teams?league=nfl" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League: nfl, nhl, nba, cbb, mlb, cfb |
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"sport": "football",
"count": 2,
"source_url": "https://sportsbook.draftkings.com/teams/football/nfl",
"fetched_at": "2026-08-15T12:00:00Z",
"teams": [
{
"id": "18454",
"name": "Arizona Cardinals",
"slug": "arizona-cardinals",
"url": "https://sportsbook.draftkings.com/teams/football/arizona-cardinals-odds-18454"
}
]
}
}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 teams listed on DraftKings Sportsbook's public Teams page for one league. Allowed `league` values: `nfl`, `nhl`, `nba`, `cbb`, `mlb`, `cfb`.
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"sport": "football",
"count": 2,
"source_url": "https://sportsbook.draftkings.com/teams/football/nfl",
"fetched_at": "2026-08-15T12:00:00Z",
"teams": [
{
"id": "18454",
"name": "Arizona Cardinals",
"slug": "arizona-cardinals",
"url": "https://sportsbook.draftkings.com/teams/football/arizona-cardinals-odds-18454"
}
]
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/teams?league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"