# Hyperliquid Vaults List

> Hyperliquid Vaults List is a paid API for AI agents from klymax402.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns a list of Hyperliquid DeFi vaults with configurable result limit

## Facts

- Endpoint: GET https://klymax402.com/api/hl-vaults/api/vaults
- Price: $0.008/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-list-bedad464
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LthpGb-T5QZGrfX6qIx8l

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-list-bedad464
```

Example prompt: Can you pull up the first 10 Hyperliquid vaults available so I can see what yield options are out there?

## When to prefer this

Use this endpoint when you need to enumerate or browse available Hyperliquid vaults for DeFi research, portfolio planning, or yield comparison. Prefer it when you need a quick, paginated snapshot of vault options without needing deep on-chain data.

## Known failure modes

- Invalid limit parameter type returns validation error
- Hyperliquid API unavailability causes upstream timeout
- Payment failure (insufficient USDC balance) blocks request
- Limit set to 0 or negative may return empty or error response

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON array of Hyperliquid vault objects, up to the specified limit (default 20), containing vault metadata such as names, addresses, and relevant DeFi metrics for each vault.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max vaults to return (default: 20)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-vaults-list-bedad464/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
