# Hyperliquid Funding Rates API

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

Returns current perpetual futures funding rates across all Hyperliquid markets, sortable by highest, lowest, or absolute value

## Facts

- Endpoint: GET https://klymax402.com/api/hl-funding/api/rates
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-funding-rates-api-7b476a4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NiZn6CXD7UOXb-KQRq9Pu

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-rates-api-7b476a4c
```

Example prompt: Show me the current Hyperliquid perpetual funding rates sorted by highest first — I want to see which markets are paying the most to shorts.

## When to prefer this

Use this endpoint when you need a ranked list of all Hyperliquid perpetual funding rates in one call, especially when you want to identify the most extreme positive or negative rates across the full market. Prefer this over exchange-specific dashboards when building automated trading signals, arbitrage scanners, or funding rate monitors inside an AI agent workflow that pays per call without API key setup.

## Known failure modes

- Invalid sort enum value returns an error
- Hyperliquid upstream API unavailable causes failure
- Payment of 0.005 USDC not provided results in 402 response
- Empty rates array if no market data is currently available

## 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 an array of funding rate entries across all Hyperliquid perpetual markets, the sort order applied, the timestamp of the data, and the total number of markets included. Each rate entry indicates the annualized or periodic funding rate for a given market symbol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "enum": [
    "highest",
    "lowest",
    "abs"
   ],
   "type": "string",
   "description": "Sort order for funding rates. 'highest' = most positive first (shorts pay longs), 'lowest' = most negative first (longs pay shorts), 'abs' = highest absolute value first (default)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "sort": "example",
  "rates": [],
  "timestamp": "example",
  "totalMarkets": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-funding-rates-api-7b476a4c/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)
