# Hyperliquid Smart Money Data API – Market Data by Asset Class

> Hyperliquid Smart Money Data API – Market Data 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-15).

Returns mark price, funding rate, and open interest for all markets within a single asset class (crypto, equities, commodities, FX, indices, or rates) on Hyperliquid

## Facts

- Endpoint: GET https://whaletape.xyz/markets/class/:asset_class
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-smart-money-data-api-market-data-by-asset-class-0a1a8932
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zYnTy1rT-fw4MuMBTpbCK

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-smart-money-data-api-market-data-by-asset-class-0a1a8932
```

Example prompt: Show me the current mark price, funding rate, and open interest for all crypto markets on Hyperliquid — I don't need the other asset classes, just crypto.

## When to prefer this

Choose this endpoint when you want a focused snapshot of one asset class (e.g. only crypto or only FX) rather than all 320 Hyperliquid markets at once. It is more efficient than the full-market endpoint when your downstream logic only concerns one category, and cheaper to parse and act on. Prefer it over the AI narrative or squeeze-screen endpoints when you need raw numeric data (mark price, funding, OI) for your own analysis rather than pre-interpreted signals.

## Known failure modes

- Invalid asset_class path parameter returns an error or empty result
- Network or payment failure (402) if x402 micropayment is not handled
- Rate limiting if called too frequently
- Empty result set if no markets exist for the requested asset class at that moment

## How this service works

Screen one asset class without pulling all 320 markets: mark price, funding rate and open interest for crypto, equities, commodities, FX, indices or rates

## Output

A filtered list of Hyperliquid markets belonging to the specified asset class, each with its current mark price, funding rate, and open interest — narrowed to one class so the response is compact and actionable without loading all 320 markets.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-smart-money-data-api-market-data-by-asset-class-0a1a8932/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)
