# Hyperliquid Top Traders All Time Scraper

**Use case:** 

Scrape the Hyperliquid all-time trader leaderboard with wallet address, account value, PnL, ROI, and volume. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "window": "allTime"
}
```

## Output

```json
{
  "address": {
    "label": "👛 Address",
    "format": "text"
  },
  "account_value": {
    "label": "💼 Account Value",
    "format": "number"
  },
  "pnl": {
    "label": "📈 PnL",
    "format": "number"
  },
  "roi": {
    "label": "📊 ROI",
    "format": "number"
  },
  "volume": {
    "label": "💱 Volume",
    "format": "number"
  },
  "position_count": {
    "label": "🔢 Positions",
    "format": "number"
  },
  "top_position": {
    "label": "🥇 Top Position",
    "format": "text"
  },
  "win_rate": {
    "label": "🎯 Win Rate",
    "format": "number"
  },
  "days_active": {
    "label": "📅 Days Active",
    "format": "number"
  },
  "rank": {
    "label": "🏆 Rank",
    "format": "number"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Hyperliquid Leaderboard Scraper](https://apify.com/parseforge/hyperliquid-leaderboard-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/hyperliquid-leaderboard-scraper) to learn more, explore other use cases, and run it yourself.