> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Global P&L Leaderboard

> Rank wallets by P&L, volume, profit, or win count.

Canonical reference: [Leaderboard](/data/leaderboard/global)

```bash theme={null}
curl "https://api.polynode.dev/v3/leaderboard?sort=total&limit=1" \
  -H "x-api-key: $POLYNODE_API_KEY"
```

Use `sort=total`, `realized`, `volume`, `profit`, or `wins` depending on the leaderboard view.

For filtered leaderboards, use one primary market dimension per request:

```bash theme={null}
curl "https://api.polynode.dev/v3/leaderboard?category=crypto&sort=total&limit=20" \
  -H "x-api-key: $POLYNODE_API_KEY"

curl "https://api.polynode.dev/v3/leaderboard?tag_slug=us-election&sort=volume&limit=20" \
  -H "x-api-key: $POLYNODE_API_KEY"
```

Supported dimensions include `category`, `tags`/`tag_slug`, `market`/`market_slug`, `event_slug`, and `condition_id`.
