# DOGE Tape – Hyperliquid DOGE Mark, OI & Funding

> DOGE Tape – Hyperliquid DOGE Mark, OI & Funding 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's current DOGE mark price, open interest (OI), and funding rate in a single parameterless call.

## Facts

- Endpoint: GET https://earn-pulse.haiqingm58.workers.dev/doge
- 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/doge-tape-hyperliquid-doge-mark-oi-funding-cb4c5bd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mBfv7O5gLanxYFKn5MdxH

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 doge-tape-hyperliquid-doge-mark-oi-funding-cb4c5bd3
```

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

## When to prefer this

Choose this endpoint when you specifically need Hyperliquid DOGE perpetual market data (mark price, OI, funding rate) in a single lightweight call. Prefer it over generic crypto price APIs when funding rate and open interest are required alongside the mark price. If you need BTC, ETH, SOL, ARB, UNI, or SUI instead, use the sibling tape endpoints on the same host.

## Known failure modes

- Hyperliquid API unavailable — upstream timeout or 5xx error
- Worker rate-limited or payment not accepted — 402 Payment Required if x402 microtransaction fails
- Stale data if Hyperliquid mark feed is delayed
- Empty or null fields if DOGE market is illiquid or halted

## How this service works

Hyperliquid DOGE mark, OI, funding. No parameters.

## Output

Returns a JSON object containing the Hyperliquid DOGE mark price (USD), open interest (in DOGE or USD notional), and the current funding rate (as a decimal or annualized percentage), reflecting real-time perpetual futures market data.

## 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/doge-tape-hyperliquid-doge-mark-oi-funding-cb4c5bd3/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)
