# UNI Tape — Hyperliquid UNI Market Data

> UNI Tape — Hyperliquid UNI Market Data 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 real-time Uniswap (UNI) mark price, open interest, and funding rate from Hyperliquid perpetuals.

## Facts

- Endpoint: GET https://earn-pulse.haiqingm58.workers.dev/uni
- 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/uni-tape-hyperliquid-uni-market-data-ff7919b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iMtqaHnpQKQ6MARCBdCee

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 uni-tape-hyperliquid-uni-market-data-ff7919b7
```

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

## When to prefer this

Use this endpoint when you specifically need real-time UNI perpetual futures data (mark price, OI, funding) from Hyperliquid. Prefer this over generic market data APIs when Hyperliquid-specific funding rates and OI are required, for example to assess arbitrage opportunities or track crowding in UNI perp positions.

## Known failure modes

- Hyperliquid API unavailable — upstream fetch fails, returns 5xx error
- Stale data if Hyperliquid feed is delayed
- Network timeout from Cloudflare Worker if Hyperliquid is slow to respond
- Unexpected schema changes from Hyperliquid breaking the parser

## How this service works

Hyperliquid UNI mark, OI, funding. No parameters.

## Output

Returns UNI perpetual market data from Hyperliquid including the mark price (in USD), total open interest (in USD or contracts), and the current funding rate (as a percentage or basis points), typically as a JSON object with those three fields.

## 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/uni-tape-hyperliquid-uni-market-data-ff7919b7/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)
