{
  "openapi": "3.0.1",
  "info": {
    "title": "Binance Leaderboard Scraper with Trading Signals",
    "description": "Scrape Binance Copy Trading leaderboard and generate AI-ready trading signals. Track top traders' positions, ROI, PNL, and performance stats. Unique features: AI PREDICTIONS, Battle Score per symbol, Direction Bias, Copy Trading Coefficients. Export JSON/CSV/XLSX. No API rate limits.",
    "version": "1.0",
    "x-build-id": "9db6oc0zfZCAW9oOn"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/brilliant_gum~binance-copy-trading-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-brilliant_gum-binance-copy-trading-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/brilliant_gum~binance-copy-trading-scraper/runs": {
      "post": {
        "operationId": "runs-sync-brilliant_gum-binance-copy-trading-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/brilliant_gum~binance-copy-trading-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-brilliant_gum-binance-copy-trading-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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Operating Mode",
            "enum": [
              "leaderboard",
              "tracking",
              "analytics"
            ],
            "type": "string",
            "description": "Select the scraping mode:\n• **leaderboard** - Scrape top traders from Copy Trading Leaderboard\n• **tracking** - Track specific traders by Portfolio ID\n• **analytics** - Winners vs Losers divergence analysis with trading signals",
            "default": "analytics"
          },
          "maxTraders": {
            "title": "Maximum Traders",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Number of traders to scrape from leaderboard (1-200). Used in Leaderboard mode.",
            "default": 100
          },
          "period": {
            "title": "Performance Period",
            "enum": [
              "DAILY",
              "WEEKLY",
              "MONTHLY",
              "ALL"
            ],
            "type": "string",
            "description": "Time period for trader performance ranking",
            "default": "MONTHLY"
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "PNL",
              "ROI",
              "WIN_RATE",
              "COPIER_COUNT"
            ],
            "type": "string",
            "description": "Ranking criteria for traders",
            "default": "PNL"
          },
          "withPositions": {
            "title": "Include Current Positions",
            "type": "boolean",
            "description": "Fetch currently open positions for each trader. Required for Analytics mode to calculate Direction Bias and Battle Scores.",
            "default": true
          },
          "portfolioIds": {
            "title": "Portfolio IDs to Track",
            "type": "array",
            "description": "List of specific Portfolio IDs to track (for Tracking mode only). Find Portfolio IDs in Binance Copy Trading URLs.",
            "items": {
              "type": "string"
            }
          },
          "trueLosersMode": {
            "title": "TRUE LOSERS Mode 🔥",
            "type": "boolean",
            "description": "Get actual losing traders (negative PNL) from the BOTTOM of leaderboard instead of just bottom performers from TOP. This provides REAL Winners vs Losers divergence for maximum signal accuracy!",
            "default": true
          },
          "winnersCount": {
            "title": "Winners Count",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Number of top performing traders to analyze as 'Winners' (Analytics mode)",
            "default": 50
          },
          "losersCount": {
            "title": "Losers Count",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Number of bottom performing/losing traders to analyze as 'Losers' (Analytics mode)",
            "default": 50
          },
          "outputFormat": {
            "title": "Output Format",
            "enum": [
              "json",
              "csv",
              "xlsx"
            ],
            "type": "string",
            "description": "Format for the output data. JSON for API integration, CSV/XLSX for spreadsheets.",
            "default": "json"
          },
          "requestDelay": {
            "title": "Request Delay (ms)",
            "minimum": 100,
            "maximum": 5000,
            "type": "integer",
            "description": "Delay between requests to avoid rate limiting (in milliseconds). Lower = faster but higher risk of blocks.",
            "default": 500
          },
          "debugMode": {
            "title": "Debug Mode",
            "type": "boolean",
            "description": "Enable verbose logging for debugging. Shows detailed information about each request.",
            "default": false
          },
          "fetchHistory": {
            "title": "Include Position History",
            "type": "boolean",
            "description": "Fetch closed/historical positions for tracked traders (Tracking mode only). Shows past trades with entry/exit prices and PnL.",
            "default": false
          },
          "historyPageSize": {
            "title": "History Page Size",
            "minimum": 10,
            "maximum": 50,
            "type": "integer",
            "description": "Number of historical positions per page (10-50)",
            "default": 20
          },
          "maxHistoryPages": {
            "title": "Max History Pages",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum number of history pages to fetch. Total records = pageSize x maxPages",
            "default": 5
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}