DraftKings Pick6 Player Props Scraper
Pricing
from $0.05 / 1,000 results
DraftKings Pick6 Player Props Scraper
Scrape live DraftKings Pick6 player props, over/under lines, and payout multipliers. No login. Part of Crawloop DFS Props Suite.
Pricing
from $0.05 / 1,000 results
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
1
Monthly active users
12 hours ago
Last modified
Categories
Share
DraftKings Pick6 Player Props Scraper — Lines & Multipliers
Crawloop DFS Player Props Suite — Real-time player props, over/under lines, and odds from US daily fantasy sports (DFS) pick'em platforms.
| PrizePicks | Betr Picks | DraftKings Pick6 | Underdog Fantasy | Multi-Source |
|---|---|---|---|---|
| PrizePicks Scraper | Betr Picks Scraper | Pick6 Scraper ◄── you are here | Underdog Props Scraper | DFS Multi-Source |
Disclaimer: This is an unofficial integration developed independently of DraftKings. It is not affiliated with, sponsored by, or endorsed by DraftKings or any of its subsidiaries.
DraftKings, Pick6, and related names are trademarks of their respective owners. Data is read from publicly accessible web sources only.
This Actor is provided for informational and research purposes only. It does not provide betting advice.
Extract every active DraftKings Pick6 player prop as structured JSON — player, stat category, over/under line, payout multiplier, and matchup. Completely anonymous: no login or session cookies required.
Built on curl_cffi with US residential proxies. Output follows the Crawloop DFS schema for compatibility with PrizePicks, Betr, and Underdog datasets.
When to use this Actor
Use the DraftKings Pick6 Scraper when you need Pick6 slate props only — lines and standings multipliers — without multi-platform overhead.
For cross-platform gap analysis, use the DFS Multi-Source Props Scraper.
Key Features
- Zero credentials — Public endpoints only; no DraftKings account required.
- Stealth and bypass —
curl_cffiTLS fingerprint + US residential proxies. - Payout multipliers —
price,standingsMultiplier, and formatted multiplier inraw. - Standardized schema —
source: "draftkings-pick6", compatible with suite scrapers. - Cost-optimized filters — AND logic on league, player, stat, and team.
Input Parameters
| Parameter | Description | Default |
|---|---|---|
leagues | One or more leagues or "All". | ["MLB"] |
playerNames | Comma-separated names. Case-insensitive partial match. | — |
statTypes | Comma-separated stat types (PTS, Hits, Strikeouts). | — |
teams | Comma-separated team abbreviations or names. | — |
maxProjections | Max output rows (up to 100,000). | 30000 |
proxyConfiguration | US residential proxy recommended. | Apify RESIDENTIAL US |
Input Example
{"leagues": ["MLB"],"maxProjections": 5000,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}
Use cases
| Use case | What you get |
|---|---|
| Pick6 slate monitoring | Lines + payout multipliers |
| Featured-slate research | Props unique to Pick6 boards |
| Model feeds | Normalized DFS schema rows |
| Cross-book compare | Feed into DFS Multi-Source |
| AI / MCP workflows | Apify API, clients, or MCP |
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/draftkings-pick6-scraper').call({leagues: ['MLB'],maxProjections: 5000,proxyConfiguration: {useApifyProxy: true,apifyProxyGroups: ['RESIDENTIAL'],apifyProxyCountry: 'US',},});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items.slice(0, 5));
Python
from apify_client import ApifyClientclient = ApifyClient(token)run = client.actor("crawloop/draftkings-pick6-scraper").call(run_input={"leagues": ["MLB"],"maxProjections": 5000,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US",},})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item["player_name"], item["line"], item.get("price"))
cURL
curl "https://api.apify.com/v2/acts/crawloop~draftkings-pick6-scraper/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"leagues": ["MLB"],"maxProjections": 5000,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/draftkings-pick6-scraper.
Example prompts:
- "Run DraftKings Pick6 Scraper for MLB, max 5000, and return player_name, line, price"
- "Scrape Pick6 props and summarize the highest payout multipliers"
- "Chain Pick6 then DFS Multi-Source Props Scraper to compare MLB lines"
Suite next step
For cross-platform spreads, use DFS Multi-Source Props Scraper. For PrizePicks demon/goblin tiers, use PrizePicks Player Props Scraper.
Related Actors — DFS Props
| Platform focus | Actor |
|---|---|
| PrizePicks demon/goblin tiers | PrizePicks Player Props Scraper |
| Betr Picks GraphQL lobby | Betr Picks Scraper |
| Pick6 payout multipliers | DraftKings Pick6 Scraper ◄── you are here |
| Underdog Fantasy props & odds | Underdog Props Scraper |
| All platforms + line spread | DFS Multi-Source Props Scraper |