# Hyperliquid Smart Money Whale Events Cursor API

> Hyperliquid Smart Money Whale Events Cursor API is a paid API for AI agents from whaletape.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns only new whale events on Hyperliquid since the last poll, using a cursor for incremental updates

## Facts

- Endpoint: GET https://whaletape.xyz/pulse
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-smart-money-whale-events-cursor-api-d88e5017
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NOC3CdHNa-Yy3iAqsP4IT

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 hyperliquid-smart-money-whale-events-cursor-api-d88e5017
```

Example prompt: Check for any new Hyperliquid whale events since my last poll and give me only what's changed — use the cursor from the previous response so we don't re-fetch everything.

## When to prefer this

Choose this endpoint when you are polling Hyperliquid whale data on a schedule and want to minimize bandwidth and cost by receiving only new events since your last call. It is ideal for agents that run on a timer and must avoid redundant baseline reloads. Prefer sibling endpoints for full snapshots, market-wide overviews, or liquidation level lookups.

## Known failure modes

- Invalid or expired cursor returns error or full dataset reset
- No new events since last cursor returns empty result set
- Rate limiting if polling too aggressively
- Service unavailability returns HTTP 5xx
- Missing cursor parameter may return unexpected results

## How this service works

Only what changed since your last call: pass the cursor you got back and receive just the new whale events, never the whole base again. Built for agents that poll on a schedule and pay per request

## Output

A delta payload containing only whale events that occurred after the provided cursor position — new smart money activity on Hyperliquid perp markets — plus an updated cursor value to use on the next poll. No repeated baseline data is returned.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "events": [
   {
    "ts": 1788010123,
    "coin": "ETH",
    "side": "short",
    "event": "increased",
    "address": "0x5b5d...",
    "notional": 104287584.4
   }
  ],
  "truncated": false,
  "next_cursor": 1788010123
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-smart-money-whale-events-cursor-api-d88e5017/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)
