# Hyperliquid Historical Price, Funding & Open Interest Snapshots API

> Hyperliquid Historical Price, Funding & Open Interest Snapshots API 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 recorded price, funding rate, and open interest snapshots for a single Hyperliquid market symbol — data not available retroactively from the exchange itself

## Facts

- Endpoint: GET https://whaletape.xyz/history/:symbol
- 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-historical-price-funding-open-interest-snapshots-api-39a1f3cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kUHuI-VeDzJCaNu_pJMmc

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-historical-price-funding-open-interest-snapshots-api-39a1f3cd
```

Example prompt: Pull the historical price, funding rate, and open interest snapshots for BTC on Hyperliquid — I need this time-series data for backtesting since Hyperliquid doesn't serve it retroactively.

## When to prefer this

Use this endpoint when you need retroactive historical time-series data (price, funding rate, open interest) for a specific Hyperliquid perpetuals market that the exchange itself does not expose via its own API. Ideal for backtesting quantitative strategies, analyzing past funding regimes, or reconstructing open interest trends over time for a single symbol.

## Known failure modes

- Symbol not found or unsupported — returns error if the market symbol doesn't exist on Hyperliquid
- No historical data available for a very new or recently listed market
- Rate limiting or payment failure if the x402 payment of $0.05 USDC is not processed correctly
- Malformed symbol parameter causes a bad request response

## How this service works

Backtesting raw material for one market: price, funding and open-interest snapshots we recorded over time, as a series the exchange does not serve retroactively

## Output

A time-series array of snapshots for the requested symbol, each containing a recorded timestamp alongside mark price, funding rate, and open interest values — historical data recorded by whaletape.xyz that is not available retroactively from the Hyperliquid exchange directly.

## 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-historical-price-funding-open-interest-snapshots-api-39a1f3cd/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)
