# Hyperliquid Token Balances API

> Hyperliquid Token Balances API is a paid API for AI agents from synapse-api-brown.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches token balances for a given wallet address on the Hyperliquid blockchain network, optionally filtered by specific contract addresses.

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/hyperliquid/token/balances
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-token-balances-api-0dd66feb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7YyG-Bl_Z33nq0gAry4Bo

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-token-balances-api-0dd66feb -d '<json body>'
```

Example prompt: What token balances does wallet 0xAbC123...def456 currently hold on Hyperliquid? Include balances for contract addresses 0x111... and 0x222... if you can.

## When to prefer this

Use this endpoint when you need to query token balances specifically on the Hyperliquid network for a given wallet. Prefer it over generic multi-chain balance APIs when the user is explicitly working within the Hyperliquid ecosystem, especially for DeFi portfolio tracking, position monitoring, or auditing token holdings on that specific chain.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Contract addresses that don't exist on Hyperliquid return zero or null balances
- Network or API downtime results in a timeout or 5xx error
- Unrecognized contract address format may cause a parsing error
- Owner address with no Hyperliquid activity returns an empty balance list

## How this service works

High-speed API suite for AI processing, web scraping, and smart data utilities across 57+ blockchain networks. Pay-per-call via x402.

## Output

Returns a list of token balances associated with the specified owner wallet on Hyperliquid, including token identifiers and amounts. When contract addresses are provided, results are filtered to only those specific tokens.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "owner": {
   "type": "string"
  },
  "contractAddresses": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-token-balances-api-0dd66feb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from synapse-api-brown.vercel.app](https://www.zero.xyz/host/synapse-api-brown.vercel.app/llms.txt)
