Binance Futures Leaderboard Scraper

  • epctex/binance-futures-leaderboard
  • Modified
  • Users 534
  • Runs 104.8k
  • Created by Author's avatarepctex

Unleash the power of Binance Futures Leaderboard Scraper! Gather and analyze top user positions on the largest cryptocurrency exchange. Optimize your coin trading with advanced filtering and sorting features. Gain valuable insights for informed decisions.

Free trial for 3 days

Then $30.00/month

No credit card required now

Binance Futures Leaderboard Scraper

Free trial for 3 days

Then $30.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "startUrls": [
    "https://www.binance.com/en/futures-activity/leaderboard/user/cm?encryptedUid=708A41D98F05FD23F8423AB41514E489",
    "https://www.binance.com/en/futures-activity/leaderboard/futures"
  ],
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~binance-futures-leaderboard/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'