# Hyperliquid Spot Balance Lookup

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

Returns the spot token balances held by a given Ethereum wallet address on the Hyperliquid exchange

## Facts

- Endpoint: GET https://klymax402.com/api/hl-spot/api/balance
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-spot-balance-lookup-ad8d1d28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RvIpWf0gVP_zNo6Xo2NJK

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-spot-balance-lookup-ad8d1d28
```

Example prompt: What spot token balances does the wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 have on Hyperliquid right now?

## When to prefer this

Use this endpoint when you specifically need spot token balance data from the Hyperliquid exchange for a given Ethereum address. Prefer this over generic blockchain balance APIs when the user is interested in Hyperliquid's internal spot account state rather than on-chain token balances on Ethereum or other L1/L2 networks.

## Known failure modes

- Invalid or malformed wallet address (not 42-char 0x format) returns an error or empty result
- Wallet with no Hyperliquid spot positions returns an empty balances array
- Network or upstream Hyperliquid API outage causes timeout or 5xx error
- Payment failure (insufficient USDC on Base) blocks the call with a 402 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

Returns a JSON object containing the total count of token positions, the queried wallet address, and an array of spot token balances (each entry includes token identifier and amount held on Hyperliquid).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "description": "Wallet address in 0x format (42 characters). Example: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "address": "example",
  "balances": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-spot-balance-lookup-ad8d1d28/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)
