# Hyperliquid Funding Rate Extremes Leaderboard

> Hyperliquid Funding Rate Extremes Leaderboard is a paid API for AI agents from hl-tool.darren-pi.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the highest and lowest funding rates across all Hyperliquid perpetual markets, forming a carry-cost leaderboard of funding extremes

## Facts

- Endpoint: GET https://hl-tool.darren-pi.workers.dev/v1/funding/extremes
- 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-extremes-leaderboard-fda00549
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-lYFxy8d8v7A0DUHwknYn

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-extremes-leaderboard-fda00549
```

Example prompt: What are the most extreme funding rates on Hyperliquid right now — show me which perpetuals have the highest and lowest carry costs so I can spot funding arb opportunities?

## When to prefer this

Use this endpoint when you specifically need a ranked, consolidated view of Hyperliquid funding rate extremes across all perpetual markets in a single call, rather than querying individual market funding rates one by one. Ideal for carry-trade screening, funding arbitrage detection, and monitoring which assets have the most extreme funding on Hyperliquid DEX.

## Known failure modes

- Hyperliquid API unavailable — upstream data fetch fails, returning a 5xx error
- Payment not included or insufficient — x402 payment required error returned
- Rate limit exceeded — too many requests in a short window
- Empty or stale data if Hyperliquid funding data has not refreshed recently

## How this service works

Full Hyperliquid funding extremes (carry-cost leaderboard)

## Output

A ranked leaderboard of Hyperliquid perpetual markets sorted by funding rate extremes, including the assets with the highest positive and most negative funding rates, enabling carry-cost analysis and funding arbitrage identification.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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/hyperliquid-funding-rate-extremes-leaderboard-fda00549/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hl-tool.darren-pi.workers.dev](https://www.zero.xyz/host/hl-tool.darren-pi.workers.dev/llms.txt)
