# WhaleTape · Hyperliquid Smart Money — Markets by Asset Class

> WhaleTape · Hyperliquid Smart Money — Markets by Asset Class is a paid API for AI agents from whaletape.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns live open interest, funding rates, mark price, and 24h volume for all markets in a given asset class on Hyperliquid, updated in near real-time.

## Facts

- Endpoint: GET https://whaletape.xyz/markets/class/%7Basset_class%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whaletape-hyperliquid-smart-money-markets-by-asset-class-0883589d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0B8xWKf-sHcqQpTYI8IQD

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 whaletape-hyperliquid-smart-money-markets-by-asset-class-0883589d
```

Example prompt: Pull the latest open interest, funding rates, and 24h volume for all crypto markets on Hyperliquid — I want to see which ones have unusual whale positioning right now.

## When to prefer this

Use this endpoint when you need a broad, cross-market snapshot of OI, funding, and volume for an entire asset class on Hyperliquid in one call, rather than querying a single instrument or needing historical time-series data. It is ideal for scanning all markets simultaneously to detect anomalies, rather than tracking one asset over time.

## Known failure modes

- Invalid or unsupported asset_class value returns empty or error response
- Payment not fulfilled (x402) results in 402 Payment Required before data is served
- Stale data if Hyperliquid feed is temporarily delayed
- Rate limiting if payment is not provided per-request

## How this service works

Live whale positioning, OI/funding signals and AI market briefs from Hyperliquid. Pay per request (x402) or unlock the Pro dashboard for 60 minutes.

## Output

A JSON object containing a count of markets, an updated_at timestamp, the queried asset_class, and an array of market objects each with coin, symbol, DEX, funding rate, mark price, 24-hour volume, asset class, and open interest figures — all sourced live from Hyperliquid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 194,
  "markets": [
   {
    "dex": "",
    "coin": "BTC",
    "symbol": "BTC",
    "funding": 0.0000298097,
    "mark_px": 77302,
    "day_volume": 2824000602.98666,
    "asset_class": "crypto",
    "open_interest": 36419.31138
   }
  ],
  "updated_at": "2026-08-23T01:39:43.769674+00:00",
  "asset_class": "crypto"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whaletape-hyperliquid-smart-money-markets-by-asset-class-0883589d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whaletape.xyz](https://www.zero.xyz/host/whaletape.xyz/llms.txt)
