
Binance Futures Leaderboard Scraper
- epctex/binance-futures-leaderboard
- Modified
- Users 534
- Runs 104.8k
- Created by
epctex
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.
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'