# WhaleTape Hyperliquid Coverage Metadata

> WhaleTape Hyperliquid Coverage Metadata is a paid API for AI agents from whaletape.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the data coverage metadata for a specific Hyperliquid market symbol — including timestamp range, number of data points, median gap, and availability.

## Facts

- Endpoint: GET https://whaletape.xyz/coverage/%7Bsymbol%7D
- Price: $0.001/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-coverage-metadata-38667f68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5UWR_0OGMsFs2uASXQcpy

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-coverage-metadata-38667f68
```

Example prompt: Check WhaleTape's data coverage for BTC on Hyperliquid — tell me how many points are available, what time range they span, and how frequently the data is sampled.

## When to prefer this

Use this endpoint when you need to validate data availability and coverage before committing to a heavier data pull for a specific Hyperliquid market. It is the right choice when you want to check freshness, granularity, or whether a symbol is supported — without paying for the full signal or AI brief endpoints. Prefer this over the full Pro snapshot when you only need metadata about what data exists.

## Known failure modes

- Unknown or unsupported symbol returns unavailable or empty result
- Payment not completed (x402) results in 402 Payment Required response
- Symbol path parameter missing or malformed causes a 400 or routing error
- Market temporarily offline on Hyperliquid may show available: false
- Rate limiting if too many requests without valid payment token

## 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: symbol name, total number of data points, first and last Unix timestamps, span in days, median gap between data points in seconds, and a boolean indicating whether the market data is currently available.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "points": 2016,
  "symbol": "BTC",
  "last_ts": 1788010000,
  "first_ts": 1787400000,
  "available": true,
  "span_days": 7.07,
  "median_gap_s": 300
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whaletape-hyperliquid-coverage-metadata-38667f68/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)
