# WhaleTape Hyperliquid Historical Market Series

> WhaleTape Hyperliquid Historical Market Series 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 a time-series of funding rate, mark price, daily volume, and open interest data points for a given Hyperliquid symbol

## Facts

- Endpoint: GET https://whaletape.xyz/history/%7Bsymbol%7D
- 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/whaletape-hyperliquid-historical-market-series-45cf441e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bLlgaQFPH86k4UY2OlKQV

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-historical-market-series-45cf441e
```

Example prompt: Pull the historical funding rate and open interest data for BTC from Hyperliquid so I can see how positioning and rates have shifted over time.

## When to prefer this

Use this endpoint when you need raw time-series market data (funding, OI, volume, mark price) for a specific Hyperliquid perpetual market, especially for backtesting, charting, or building custom signals. Prefer this over the Pro snapshot endpoint when you want historical depth for one symbol rather than a cross-market snapshot.

## Known failure modes

- Invalid or unsupported symbol returns empty or error response
- Symbol path parameter missing causes 404 or malformed request
- Payment not processed via x402 results in 402 Payment Required
- Rate limiting if too many requests made without Pro unlock
- Very new or illiquid symbols may have sparse data points

## 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 the symbol name, total count of data points, and an array of time-stamped records each with: Unix timestamp (ts), funding rate, mark price, daily volume, and open interest value.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 500,
  "points": [
   {
    "ts": 1787449174,
    "funding": 0.0000298097,
    "mark_px": 77302,
    "day_volume": 2824000602.98666,
    "open_interest": 36419.31138
   }
  ],
  "symbol": "BTC"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whaletape-hyperliquid-historical-market-series-45cf441e/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)
