# Hyperliquid Funding Rate Arbitrage Scanner

> Hyperliquid Funding Rate Arbitrage Scanner is a paid API for AI agents from klymax402.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Scans Hyperliquid perpetuals for funding rate arbitrage opportunities above a configurable threshold, returning long and short opportunities with counts.

## Facts

- Endpoint: GET https://klymax402.com/api/hl-funding/api/arb
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-funding-rate-arbitrage-scanner-36912ef9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yJMwy-_vbIWiSg1EMY_GG

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-funding-rate-arbitrage-scanner-36912ef9
```

Example prompt: Can you scan Hyperliquid for funding rate arbitrage opportunities right now? Show me anything above a 0.05% threshold so I only see the most significant ones.

## When to prefer this

Use this endpoint when you need a real-time snapshot of Hyperliquid perpetual funding rate arbitrage opportunities, especially for building delta-neutral strategies or monitoring funding rate conditions. It is preferable when your focus is specifically on Hyperliquid rather than cross-exchange funding rate comparisons, and when you want filtered results by threshold rather than raw funding rate data for all markets.

## Known failure modes

- Empty opportunities array when no perps exceed the specified threshold — try lowering the threshold value
- Invalid threshold parameter type returns an error — must be a number
- Network or upstream Hyperliquid API unavailability causes request failure
- Threshold set too high (e.g. 1.0) will always return zero opportunities since funding rates are typically small decimals

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the threshold used, an array of arbitrage opportunity objects (each describing the coin and funding rate details), plus summary counts of long opportunities, short opportunities, and total opportunities found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "threshold": {
   "type": "number",
   "description": "Minimum absolute funding rate to qualify as an arb opportunity. Default: 0.0001 (0.01% per 8h, ~36% annualized). Lower values return more results."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "threshold": 1,
  "opportunities": [],
  "longOpportunities": 1,
  "shortOpportunities": 1,
  "totalOpportunities": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-funding-rate-arbitrage-scanner-36912ef9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
