# Hyperliquid Vaults Explorer

> Hyperliquid Vaults Explorer 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-15).

Returns either a single Hyperliquid vault's overview (name, TVL, APR, drawdown, quality score) or a ranked discovery list of top open vaults, sorted by TVL or APR.

## Facts

- Endpoint: GET https://api.agentstools.dev/trader/vaults
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-vaults-explorer-eb003628
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cJu9YG44vlCA2ryBLZwDS

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-vaults-explorer-eb003628
```

Example prompt: Show me the top 10 Hyperliquid vaults ranked by APR, and then give me the full overview — TVL, APR, max drawdown, and quality score — for vault address 0x1234abcd...

## When to prefer this

Use this endpoint when you need on-chain Hyperliquid vault intelligence — either scoped analysis of a known vault address or discovery of the best vaults ranked by TVL or APR. Prefer it over generic DeFi aggregators when Hyperliquid-specific metrics like quality score and PnL trend are needed.

## Known failure modes

- Invalid or unrecognized vault address returns an error or empty result
- No open vaults matching criteria returns an empty list
- Invalid sort key value returns a validation error
- Limit out of range (below 1 or above 100) triggers schema validation failure
- On-chain data unavailable or stale may cause incomplete metrics

## How this service works

Hyperliquid vaults, two modes in one route: pass `vault` (an address) for a single vault overview — name, leader, TVL, APR, age, max drawdown, pnl trend and a deterministic 0-100 quality score; or omit it for a ranked discovery list of the top open vaults by `sort` (tvl or apr). public on-chain data, not financial advice.

## Output

For a single vault: name, leader address, TVL, APR, age, max drawdown, PnL trend, and a deterministic 0-100 quality score. For the discovery list: a ranked array of top open vaults with key metrics per vault, ordered by the chosen sort key (TVL or APR), up to the requested limit.

## 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": [
        "tvl",
        "apr"
       ],
       "type": "string",
       "description": "Ranking key for the discovery list (default tvl)."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Top-N for the list (default 20, max 100)."
      },
      "vault": {
       "type": "string",
       "description": "Optional 0x EVM vault address. Present => single-vault overview; absent => ranked top-vaults discovery list."
      }
     }
    }
   },
   "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-vaults-explorer-eb003628/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)
