Endpoint Playground
Test Crawlora's DraftKings Sportsbook team 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/team?team_id=<team_id>&sport=football&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| team_id | string | Yes | Numeric DraftKings team id | |
| sport | string | Yes | football | Sport: football, hockey, basketball, baseball |
| slug | string | Yes | Lowercase DraftKings team slug |
{
"code": 200,
"msg": "OK",
"data": {
"id": "18454",
"name": "ARI Cardinals",
"city": "Arizona",
"short_name": "Cardinals",
"abbreviation": "ARI",
"primary_color": "#97233F",
"secondary_color": "#000000",
"sport_id": "3",
"sport": "football",
"leagues": [
{
"id": "88808",
"slug": "nfl"
}
],
"source_url": "https://sportsbook.draftkings.com/teams/football/arizona-cardinals-odds-18454",
"fetched_at": "2026-08-15T12:00:00Z"
}
}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 stable team metadata embedded in a public DraftKings Sportsbook team page. Supply `team_id`, `sport`, and `slug` from an item returned by /draftkings/sportsbook/teams. Allowed `sport` values: `football`, `hockey`, `basketball`, `baseball`.
{
"code": 200,
"msg": "OK",
"data": {
"id": "18454",
"name": "ARI Cardinals",
"city": "Arizona",
"short_name": "Cardinals",
"abbreviation": "ARI",
"primary_color": "#97233F",
"secondary_color": "#000000",
"sport_id": "3",
"sport": "football",
"leagues": [
{
"id": "88808",
"slug": "nfl"
}
],
"source_url": "https://sportsbook.draftkings.com/teams/football/arizona-cardinals-odds-18454",
"fetched_at": "2026-08-15T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/draftkings/sportsbook/team?team_id=<team_id>&sport=<sport>&slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"