{
  "openapi": "3.0.1",
  "info": {
    "title": "Sleeper Player Props - Lines, Multipliers & Pick Popularity",
    "description": "Extract player prop lines from Sleeper Picks across 14+ leagues. Over/under lines, multipliers, pick popularity, recent performance, injury status. NBA, MLB, NHL, Soccer, Tennis, Golf, MMA, CS2. Filter by league, player, stat, or team.",
    "version": "0.0",
    "x-build-id": "RXTixUTH9pJDqt0HG"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/zen-studio~sleeper-player-props/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-zen-studio-sleeper-player-props",
        "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/zen-studio~sleeper-player-props/runs": {
      "post": {
        "operationId": "runs-sync-zen-studio-sleeper-player-props",
        "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/zen-studio~sleeper-player-props/run-sync": {
      "post": {
        "operationId": "run-sync-zen-studio-sleeper-player-props",
        "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",
            "uniqueItems": true,
            "type": "array",
            "description": "Select one or more leagues to fetch player props for. Choose <code>All</code> to get every available prop across all leagues.<br><br>League availability varies by season. Inactive leagues return zero results with no charge.<br><br><code>Soccer</code> fetches all soccer leagues at once. Select individual leagues (EPL, La Liga, etc.) for more targeted results.",
            "items": {
              "type": "string",
              "enum": [
                "All",
                "NBA",
                "MLB",
                "NHL",
                "NFL",
                "WNBA",
                "PGA",
                "MMA",
                "Tennis",
                "CS2",
                "Soccer",
                "Soccer:EPL",
                "Soccer:LaLiga",
                "Soccer:Ligue1",
                "Soccer:SerieA",
                "Soccer:Bundesliga",
                "Soccer:MLS",
                "Soccer:UEFAChamps"
              ],
              "enumTitles": [
                "All Leagues",
                "NBA",
                "MLB",
                "NHL",
                "NFL",
                "WNBA",
                "PGA Golf",
                "MMA",
                "Tennis",
                "CS2 (Counter-Strike)",
                "Soccer (All Leagues)",
                "English Premier League",
                "La Liga",
                "Ligue 1",
                "Serie A",
                "Bundesliga",
                "MLS",
                "UEFA Champions League"
              ]
            },
            "default": [
              "All"
            ]
          },
          "playerNames": {
            "title": "Player Names",
            "type": "string",
            "description": "Comma-separated player names, case-insensitive. Matches partial names and handles accents (Jokic matches Jokić).<br><br>Example: <code>Jokic, Ohtani, Haaland</code><br><br>Leave empty to get all players."
          },
          "statTypes": {
            "title": "Stat Types",
            "type": "string",
            "description": "Comma-separated stat types, case-insensitive. Use the machine name or display name.<br><br>Example: <code>points, assists, hits, goals, strokes</code><br><br>Common types by sport:<br>• <b>NBA:</b> points, rebounds, assists, threes_made, pts_reb_ast, blocks, steals<br>• <b>MLB:</b> hits, runs, rbis, home_runs, strike_outs, total_bases<br>• <b>NHL:</b> points, goals, assists, shots, saves<br>• <b>Soccer:</b> goals, assists, shots_on_target<br><br>Run once without this filter to see all available stat types."
          },
          "teams": {
            "title": "Teams",
            "type": "string",
            "description": "Comma-separated team abbreviations, case-insensitive. Matches the player's team.<br><br>Example: <code>CLE, LAL, NYY</code><br><br>Leave empty to get all teams."
          },
          "includeAlternateLines": {
            "title": "Include Alternate Lines",
            "type": "boolean",
            "description": "Include alternate projection lines alongside standard over/under lines. Alternate lines have different target values with adjusted multipliers (e.g., standard Points O/U 22.5 at 2.0x vs alternate 14.5 at 1.25x or 29.5 at 4.6x).<br><br>Currently available for NBA: points, rebounds, assists, threes_made, pts_reb_ast.<br><br>Default output includes only standard lines. Enable this to get all available lines per player/stat.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}