# DraftKings Pick6 Player Props Scraper (`crawloop/draftkings-pick6-scraper`) Actor

Scrape live DraftKings Pick6 player props, over/under lines, and payout multipliers. No login. Part of Crawloop DFS Props Suite.

- **URL**: https://apify.com/crawloop/draftkings-pick6-scraper.md
- **Developed by:** [Andrej Kiva](https://apify.com/crawloop) (community)
- **Categories:** Automation, Developer tools, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.05 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 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. Built for odds-comparison tools, sports analytics pipelines, and research dashboards.
>
> Suite hub: [github.com/PLCSPS-DEV/dfs-player-props](https://github.com/PLCSPS-DEV/dfs-player-props)
>
> Product site: [crawloop.com/sports-data](https://crawloop.com/sports-data.html)

| PrizePicks | Betr Picks | DraftKings Pick6 | Underdog Fantasy | Multi-Source |
| :--- | :--- | :--- | :--- | :--- |
| [Player Props Scraper](https://apify.com/crawloop/prizepicks-player-props-scraper?fpr=guboir) | [Picks Scraper](https://apify.com/crawloop/betr-picks-scraper?fpr=guboir) | **Pick6 Scraper** ◄── you are here | [Player Props Scraper](https://apify.com/crawloop/underdog-player-props?fpr=guboir) | [Props Board](https://apify.com/crawloop/dfs-multi-source-props-scraper?fpr=guboir) |

> **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; no proprietary databases are redistributed.
>
> This Actor is provided **for informational and research purposes only**. It does not provide betting advice. You are solely responsible for ensuring your use complies with applicable laws, platform terms of use, and your organization's policies.
>
> No warranty is given as to accuracy, completeness, or continued availability of third-party data. Use at your own risk.

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` to bypass Cloudflare/Akamai and geoblocking via 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 (e.g. 0.7x, 1.4x, 3.6x) — without multi-platform overhead.

Pick6 may feature a different featured slate than PrizePicks or Betr; not every prop appears on every board. For cross-platform gap analysis, use the [Multi-Source Board](https://apify.com/crawloop/dfs-multi-source-props-scraper?fpr=guboir).

### DFS Props Pipeline

````

Phase 1 — Single-platform boards          Phase 2 — Cross-platform compare
────────────────────────────────          ─────────────────────────────────

PrizePicks Scraper  ───────────────────┐
Betr Picks Scraper  ───────────────────┤
Pick6 Scraper       ◄── you are here ──┼──► Multi-Source Board ──► comparisons dataset
Underdog Scraper    ───────────────────┘

````

### Key Features

- **Zero credentials** — Public endpoints only; no DraftKings account required.
- **Stealth and bypass** — `curl_cffi` TLS fingerprint + US residential proxies.
- **Payout multipliers** — `price`, `standingsMultiplier`, and formatted multiplier in `raw`.
- **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

```json
{
  "leagues": ["MLB"],
  "playerNames": "Pages, Gonzales",
  "statTypes": "Hits",
  "teams": "LAD",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

### Output Format

```json
{
  "projection_id": "6158379_Andy_Pages_Hits",
  "line": 0.5,
  "player_name": "Andy Pages",
  "stat": "Hits",
  "stat_short": "Hits",
  "start_time": "2026-06-21T20:11:11.0000000+00:00",
  "game_start": "2026-06-21T20:11:11.0000000+00:00",
  "league": "MLB",
  "description": "BAL @ LAD",
  "side": "over",
  "price": 0.7,
  "source": "draftkings-pick6",
  "source_type": "dfs",
  "raw": {
    "pickableId": "3536518",
    "dkId": "459808",
    "standingsMultiplier": 0.7,
    "formattedMultiplier": "0.7x"
  }
}
```

### Typical Workflow

**1. Scrape the Pick6 featured slate**

Run with `leagues: ["MLB"]` or `["WNBA"]` during active windows. US residential proxy is required for reliable access.

**2. Filter by player or stat**

Narrow output with `playerNames` and `statTypes` before pushing to your database.

**3. Compare multipliers across books**

Join with [PrizePicks](https://apify.com/crawloop/prizepicks-player-props-scraper?fpr=guboir) demon/goblin tiers or run the [Multi-Source Board](https://apify.com/crawloop/dfs-multi-source-props-scraper?fpr=guboir) for `line_pick6` in comparison rows.

### Actor Comparison

| Task | Pick6 | PrizePicks | Betr | Underdog | Multi-Source |
| :--- | :---: | :---: | :---: | :---: | :---: |
| Pick6 payout multipliers | Yes | No | No | Partial | Yes |
| No login required | Yes | Yes | Yes | Yes | Yes |
| Featured slate only | Yes | No | No | No | Yes |
| Cross-platform line spread | No | No | No | No | Yes |

### Pricing

Pay-per-event billing. Filtered-out projections are not billed.

| Event | Price |
| :--- | :--- |
| Prop row | from **$0.05 / 1,000** projections |

### API Integration

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("crawloop/draftkings-pick6-scraper").call(
    run_input={"leagues": ["MLB"]}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["player_name"], item["line"], item["price"])
```

***

**Learn more:** [Suite hub](https://crawloop.com/sports-data.html) · [GitHub docs](https://github.com/PLCSPS-DEV/dfs-player-props)

**Also from Crawloop:** [Industrial Automation Suite](https://crawloop.com/industrial-automation.html)

# Actor input Schema

## `leagues` (type: `array`):

One or more leagues. Select 'All' for every available league, or specify 'MLB', 'WNBA', 'NFL', etc.

## `playerNames` (type: `string`):

Comma-separated player names. Case-insensitive, diacritic-insensitive (Jokic matches Jokić). Partial matching.

## `statTypes` (type: `string`):

Comma-separated stat types/markets. Accepts names or abbreviations (PTS, Hits, Rebounds, Strikeouts). Exact match, case-insensitive.

## `teams` (type: `string`):

Comma-separated team names or abbreviations (Lakers, LAL, Dodgers, LAD). Matches player's team or either side of matchup.

## `maxProjections` (type: `integer`):

Maximum number of projection records to output for the run.

## `proxyConfiguration` (type: `object`):

Proxy configuration for scraping. Residential proxy is highly recommended as DraftKings blocks datacenter IPs.

## Actor input object example

```json
{
  "leagues": [
    "MLB",
    "WNBA",
    "NFL",
    "NBA",
    "NHL",
    "All"
  ],
  "playerNames": "",
  "statTypes": "",
  "teams": "",
  "maxProjections": 30000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "leagues": [
        "MLB",
        "WNBA",
        "NFL",
        "NBA",
        "NHL",
        "All"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawloop/draftkings-pick6-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "leagues": [
        "MLB",
        "WNBA",
        "NFL",
        "NBA",
        "NHL",
        "All",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("crawloop/draftkings-pick6-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "leagues": [
    "MLB",
    "WNBA",
    "NFL",
    "NBA",
    "NHL",
    "All"
  ]
}' |
apify call crawloop/draftkings-pick6-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawloop/draftkings-pick6-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "DraftKings Pick6 Player Props Scraper",
        "description": "Scrape live DraftKings Pick6 player props, over/under lines, and payout multipliers. No login. Part of Crawloop DFS Props Suite.",
        "version": "1.1",
        "x-build-id": "k7eSmhOxwbSesayaa"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawloop~draftkings-pick6-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawloop-draftkings-pick6-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawloop~draftkings-pick6-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawloop-draftkings-pick6-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawloop~draftkings-pick6-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawloop-draftkings-pick6-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "leagues": {
                        "title": "Leagues",
                        "type": "array",
                        "description": "One or more leagues. Select 'All' for every available league, or specify 'MLB', 'WNBA', 'NFL', etc.",
                        "default": [
                            "MLB"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "playerNames": {
                        "title": "Player Names",
                        "type": "string",
                        "description": "Comma-separated player names. Case-insensitive, diacritic-insensitive (Jokic matches Jokić). Partial matching.",
                        "default": ""
                    },
                    "statTypes": {
                        "title": "Stat Types",
                        "type": "string",
                        "description": "Comma-separated stat types/markets. Accepts names or abbreviations (PTS, Hits, Rebounds, Strikeouts). Exact match, case-insensitive.",
                        "default": ""
                    },
                    "teams": {
                        "title": "Teams",
                        "type": "string",
                        "description": "Comma-separated team names or abbreviations (Lakers, LAL, Dodgers, LAD). Matches player's team or either side of matchup.",
                        "default": ""
                    },
                    "maxProjections": {
                        "title": "Max Projections",
                        "minimum": 1,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Maximum number of projection records to output for the run.",
                        "default": 30000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy configuration for scraping. Residential proxy is highly recommended as DraftKings blocks datacenter IPs.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
