# HL Tape

> HL Tape is a paid API for AI agents from earn-pulse.haiqingm58.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a live BTC-ETH trading decision computed fresh on each request using Hyperliquid market data.

## Facts

- Endpoint: GET https://earn-pulse.haiqingm58.workers.dev/tape
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hl-tape-244dcf6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f_GjRsGFMFIYpQCUyNLjN

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 hl-tape-244dcf6d
```

Example prompt: Pull the live Hyperliquid tape right now and tell me whether BTC or ETH looks better to trade based on the current market decision.

## When to prefer this

Choose this endpoint when you need a single, already-computed BTC-vs-ETH trading decision rather than raw price or funding data you'd have to interpret yourself. It is ideal for agents that need a quick actionable signal without doing their own cross-asset analysis. If you need raw mark prices, open interest, or funding rates individually, use the sibling HL Mark, HL Open Interest, or HL Funding endpoints instead.

## Known failure modes

- Hyperliquid API unreachable — upstream data unavailable, may return 502 or empty response
- Worker timeout if Hyperliquid data fetch is slow
- Stale or null decision if underlying market feed has a gap
- x402 payment failure if USDC payment header is missing or insufficient

## How this service works

Live Hyperliquid BTC-ETH decision. Recomputed every request. No parameters.

## Output

A freshly computed decision object indicating whether BTC or ETH is currently preferred based on Hyperliquid market conditions, likely including a recommended action, the basis for the decision, and supporting market metrics recomputed at request time.

## 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"
     ],
     "type": "string"
    },
    "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/hl-tape-244dcf6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from earn-pulse.haiqingm58.workers.dev](https://www.zero.xyz/host/earn-pulse.haiqingm58.workers.dev/llms.txt)
