# Hyperliquid Vault Discovery & Overview

> Hyperliquid Vault Discovery & Overview 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 either a ranked discovery list of top Hyperliquid vaults (by TVL or APR) or a detailed single-vault overview including name, leader, TVL, APR, age, max drawdown, PnL trend, and a 0-100 quality score.

## Facts

- Endpoint: GET https://payai.agentstools.dev/trader/vaults
- 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-vault-discovery-overview-1c95effa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6BWp0rylBAjIvistB0qEk

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-vault-discovery-overview-1c95effa
```

Example prompt: Show me the top 10 Hyperliquid vaults ranked by APR so I can see which ones have the best returns right now.

## When to prefer this

Choose this endpoint when you need Hyperliquid-specific vault data — either to discover top vaults by TVL or APR or to deep-dive on a single vault's quality, drawdown, and PnL trend. Prefer this over generic DeFi aggregators when the user specifically targets Hyperliquid vaults and wants a deterministic quality score alongside standard metrics.

## Known failure modes

- Invalid or non-existent vault address returns an error or empty result
- Vault address exists on-chain but has no data indexed (new or obscure vault)
- sort param with unsupported value returns a validation error
- limit exceeding 100 is rejected
- Network or on-chain data unavailability causes a timeout or partial response

## 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 (vault param provided): returns vault name, leader address, TVL, APR, age, max drawdown, PnL trend, and a deterministic 0-100 quality score. For the discovery list (no vault param): returns a ranked array of top open vaults sorted by the chosen key (tvl or apr), each with core metrics.

## 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-vault-discovery-overview-1c95effa/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)
