# Hyperliquid Smart-Money Leaderboard

> Hyperliquid Smart-Money Leaderboard is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a ranked leaderboard of top Hyperliquid traders by performance window and metric, with optional follow-the-smart-money open positions for the top address.

## Facts

- Endpoint: GET https://api.agentstools.dev/smartmoney/leaderboard
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-smart-money-leaderboard-d24e8030
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZmoKbyzJ-IYSTrxlxdICI

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability hyperliquid-smart-money-leaderboard-d24e8030
```

Example prompt: Show me the top 20 Hyperliquid traders ranked by ROI over the past week, and also pull the current open positions of whoever is ranked #1 so I can see what they're trading right now.

## When to prefer this

Use this endpoint when you need a ranked view of elite Hyperliquid perpetuals traders and want to surface smart-money signals — especially when you need the follow-the-smart-money feature to see what the top-ranked trader is currently holding. Prefer this over generic crypto leaderboard APIs when specifically targeting Hyperliquid on-chain data with consistency signals.

## Known failure modes

- Invalid window or sort enum value returns a 400 or empty result
- limit out of range (below 1 or above 100) returns an error
- follow=true with no open positions returns an empty positions array
- Hyperliquid on-chain data temporarily unavailable returns a 5xx error
- Payment not provided or insufficient returns a 402 Payment Required

## How this service works

Follow the smart money: a ranked leaderboard of the TOP TRADERS on Hyperliquid by `window` (day/week/month/allTime) and `sort` (PnL, ROI or volume), each with account value and a consistency signal. Includes a human-readable `summary` and structured `leaders`; follow=true adds the top address's open positions. public on-chain data, not financial advice.

## Output

A ranked list of top Hyperliquid trader addresses with their account values, PnL, ROI, volume, and a consistency signal (profitable across every sub-window). If follow=true, also includes the current open perpetual positions of the single top-ranked address (symbol, side, size, entry price, unrealized PnL).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sort": {
       "enum": [
        "pnl",
        "roi",
        "vlm"
       ],
       "type": "string",
       "description": "Ranking metric within the window (default pnl)."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Top-N (default 20, max 100)."
      },
      "follow": {
       "type": "boolean",
       "description": "If true, also return the current open perp positions of the single top-ranked address."
      },
      "window": {
       "enum": [
        "day",
        "week",
        "month",
        "allTime"
       ],
       "type": "string",
       "description": "Performance window to rank by (default day)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-smart-money-leaderboard-d24e8030/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
