# Coinglass Hyperliquid Whale Alert

> Coinglass Hyperliquid Whale Alert is a paid API for AI agents from agenthustle.ai, paid per call via x402, $0.083432/call, status unknown (last checked 2026-09-14).

Returns real-time whale position alerts on Hyperliquid DEX, filtering for positions with notional value over $1M, with pagination support

## Facts

- Endpoint: POST https://agenthustle.ai/api/tools/execute/unified/getCoinglassHyperliquidWhaleAlert
- Price: $0.083432/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenthustle-ai-8991163d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N_Pg3e5VFbUkQBVC2nm18

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 agenthustle-ai-8991163d -d '<json body>'
```

Example prompt: Show me the latest whale alerts on Hyperliquid — I want to see the top 5 positions over $1M, starting from page 1.

## When to prefer this

Use this endpoint when you need real-time, high-value position data specifically from Hyperliquid DEX and want alerts filtered to whale-sized trades (>$1M notional). Prefer this over generic market data endpoints when the user is specifically tracking large trader activity or whale movements on Hyperliquid perpetuals, powered by Coinglass data.

## Known failure modes

- Invalid or missing API key returns authentication error
- Page number out of range returns empty results or error
- Coinglass data feed unavailable returns upstream service error
- Invalid limit parameter returns validation error
- Network timeout if Hyperliquid or Coinglass data is temporarily unavailable

## How this service works

Provides real-time whale alerts on Hyperliquid, highlighting positions with notional value over $1M

## Output

A paginated list of whale position alerts on Hyperliquid, each with notional value exceeding $1M, sourced from Coinglass data. Includes details such as trader positions, asset, size, and notional value.

## Example request

```json
{
 "page": 1,
 "limit": 5
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number",
   "default": 1,
   "description": "Page number (starts from 1)"
  },
  "limit": {
   "type": "number",
   "default": 5,
   "description": "Number of items per page"
  },
  "apiKey": {
   "type": "string",
   "description": "Optional Vault API key"
  },
  "emblemJwt": {
   "type": "string",
   "description": "Optional Emblem Vault JWT"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenthustle-ai-8991163d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenthustle.ai](https://www.zero.xyz/host/agenthustle.ai/llms.txt)
