# Hyperliquid Scraper — Top Traders Leaderboard & PnL

**Use case:** 

Scrape Hyperliquid's DEX leaderboard, no API key: top traders by account value and PnL. Weekly feed for crypto alpha, copy-trading and fund research.

## Input

```json
{
  "mode": "leaderboard",
  "maxResults": 25,
  "leaderboardWindow": "week",
  "wallets": [
    "0x1234567890abcdef1234567890abcdef12345678"
  ],
  "includeFills": false,
  "maxFillsPerWallet": 100,
  "proxyConfiguration": {}
}
```

## Output

```json
{
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "address": {
    "label": "Address"
  },
  "vaultAddress": {
    "label": "Vault address"
  },
  "displayName": {
    "label": "Trader",
    "format": "text"
  },
  "coin": {
    "label": "Coin",
    "format": "text"
  },
  "accountValue": {
    "label": "Account ($)",
    "format": "number"
  },
  "midPrice": {
    "label": "Mid",
    "format": "number"
  },
  "markPrice": {
    "label": "Mark",
    "format": "number"
  },
  "fundingRate": {
    "label": "Funding",
    "format": "number"
  },
  "openInterest": {
    "label": "OI",
    "format": "number"
  },
  "dayVolume": {
    "label": "24h Vol",
    "format": "number"
  },
  "apr": {
    "label": "APR",
    "format": "number"
  },
  "tvl": {
    "label": "TVL",
    "format": "number"
  },
  "size": {
    "label": "Size",
    "format": "number"
  },
  "price": {
    "label": "Fill Price",
    "format": "number"
  },
  "closedPnl": {
    "label": "Closed PnL",
    "format": "number"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "vaultUrl": {
    "label": "Vault",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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