# SOL Tape

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

Returns Hyperliquid SOL perpetual mark price, open interest, and funding rate in a single snapshot.

## Facts

- Endpoint: GET https://earn-pulse.haiqingm58.workers.dev/sol
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sol-tape-da633efd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x5Ot_fDe9i1yU_Y9LZ-Op

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 sol-tape-da633efd
```

Example prompt: What's the current SOL mark price, open interest, and funding rate on Hyperliquid right now?

## When to prefer this

Choose this endpoint when you need a lightweight, no-parameter snapshot of SOL perpetual market conditions (mark price, OI, funding) from Hyperliquid specifically. Prefer over general crypto price APIs when Hyperliquid-specific funding and OI data is required for derivatives analysis or arbitrage logic.

## Known failure modes

- Hyperliquid API unavailable — upstream fetch failure returns an error or empty response
- Worker cold start or timeout may cause latency spikes
- Stale data if the upstream Hyperliquid feed is delayed
- Non-2xx HTTP response if the worker encounters an unhandled exception

## How this service works

Hyperliquid SOL mark, OI, funding. No parameters.

## Output

Returns a JSON object containing the SOL perpetual mark price, total open interest (OI), and current funding rate as sourced from Hyperliquid's perpetuals market.

## 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/sol-tape-da633efd/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)
