{
  "openapi": "3.0.1",
  "info": {
    "title": "DFS Multi-Source Player Props Scraper",
    "description": "Scrape PrizePicks, Betr, DraftKings Pick6, and Underdog player props in one run. Normalized schema, comparison_key joins, and line spread dataset. Crawloop DFS Props Suite.",
    "version": "0.6",
    "x-build-id": "7d5aC3UId0eOp0jzM"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawloop~dfs-multi-source-props-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawloop-dfs-multi-source-props-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~dfs-multi-source-props-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawloop-dfs-multi-source-props-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~dfs-multi-source-props-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawloop-dfs-multi-source-props-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": {
          "sources": {
            "title": "Sources",
            "type": "array",
            "description": "Platforms to scrape in this run. Choose one for a single book or all for a full cross-platform snapshot.",
            "default": [
              "prizepicks",
              "betr-picks",
              "draftkings-pick6",
              "underdog"
            ],
            "items": {
              "type": "string"
            }
          },
          "leagues": {
            "title": "Leagues",
            "type": "array",
            "description": "Leagues to collect across all selected sources. Use sport abbreviations like MLB, NBA, NFL, or All.",
            "default": [
              "MLB"
            ],
            "items": {
              "type": "string"
            }
          },
          "playerNames": {
            "title": "Player Names",
            "type": "string",
            "description": "Comma-separated player names. Case-insensitive, partial matching across all sources.",
            "default": ""
          },
          "statTypes": {
            "title": "Stat Types",
            "type": "string",
            "description": "Comma-separated stat types or market labels (Total Bases, Strikeouts, PTS). Applied after collection.",
            "default": ""
          },
          "teams": {
            "title": "Teams",
            "type": "string",
            "description": "Comma-separated team names or abbreviations. Matches either side of the matchup.",
            "default": ""
          },
          "maxProjectionsPerSource": {
            "title": "Max Projections Per Source",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum raw records to collect from each platform before merge and filters.",
            "default": 10000
          },
          "maxTotalProjections": {
            "title": "Max Total Projections",
            "minimum": 1,
            "maximum": 200000,
            "type": "integer",
            "description": "Maximum records in the final merged dataset.",
            "default": 30000
          },
          "collectionMode": {
            "title": "Collection Mode",
            "enum": [
              "parallel",
              "sequential"
            ],
            "type": "string",
            "description": "Run source collectors in parallel (faster) or sequentially (lower peak memory).",
            "default": "parallel"
          },
          "includePartialResults": {
            "title": "Include Partial Results",
            "type": "boolean",
            "description": "If one source fails, still output records from successful sources.",
            "default": true
          },
          "failOnAllSourcesFailed": {
            "title": "Fail When All Sources Fail",
            "type": "boolean",
            "description": "Mark the run as failed when every selected source fails or returns zero records.",
            "default": true
          },
          "outputComparisons": {
            "title": "Output Comparisons Dataset",
            "type": "boolean",
            "description": "Push side-by-side cross-platform line rows to the named comparisons dataset.",
            "default": true
          },
          "minComparisonSources": {
            "title": "Minimum Sources Per Comparison Row",
            "minimum": 2,
            "maximum": 4,
            "type": "integer",
            "description": "Only emit comparison rows when at least this many platforms share the same comparison_key.",
            "default": 2
          },
          "prizePicksStateCode": {
            "title": "PrizePicks State Code",
            "type": "string",
            "description": "US state code used by PrizePicks public middleware fallback.",
            "default": "GA"
          },
          "underdogBoardUrls": {
            "title": "Underdog Board URLs",
            "type": "array",
            "description": "Optional direct Underdog JSON board URLs. When empty, Underdog uses CloakBrowser automation (slower, no manual setup).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "underdogRequestHeaders": {
            "title": "Underdog Request Headers",
            "type": "object",
            "description": "Optional headers for Underdog direct board URL mode.",
            "default": {}
          },
          "underdogMaxPages": {
            "title": "Underdog Max Pages",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum paginated API pages to fetch for Underdog browser/direct collection.",
            "default": 25
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "US residential proxy is strongly recommended for all sources.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}