# smartmoney-leaderboard

> smartmoney-leaderboard is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a ranked leaderboard of top-performing Hyperliquid traders by PnL, ROI, or volume over a chosen time window, with optional follow-the-leader position data for the #1 wallet.

## Facts

- Endpoint: GET https://payai.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/smartmoney-leaderboard-12d44c42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WNV7gIb2skCWu0zNc7ae_

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 smartmoney-leaderboard-12d44c42
```

Example prompt: Show me the top 10 Hyperliquid traders this week ranked by ROI, and also pull up the current open positions of the #1 ranked wallet so I can see what they're trading right now.

## When to prefer this

Choose this endpoint when you need ranked performance data specifically from the Hyperliquid perpetuals DEX — particularly when the user wants to identify top-performing wallets, compare traders by PnL/ROI/volume across different time windows, check consistency signals, or mirror the positions of the current #1 trader (copy-trading use case). Prefer this over generic crypto leaderboards when Hyperliquid-specific on-chain data is required.

## Known failure modes

- Invalid window or sort enum value returns a validation error
- limit out of range (>100 or <1) returns a 400 error
- Hyperliquid on-chain data temporarily unavailable causes a 503 or timeout
- follow=true on an address with no open positions returns an empty positions array
- Payment not processed (x402) returns a 402 Payment Required response

## 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 structured list of top-ranked Hyperliquid wallets with each wallet's address, account value, PnL, ROI, volume, and a consistency signal indicating profitable performance across windows. A human-readable summary of the top-N results is included. If follow=true, the response also includes the current open perpetual positions (size, side, entry price, leverage, unrealized PnL) of the single top-ranked address.

## 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/smartmoney-leaderboard-12d44c42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
