Pulls real-time and historical funding rates for all 229 Hyperliquid perpetual markets through three x402-gated endpoints. You can sort current rates by absolute value to spot extremes, fetch hourly history for specific coins with summary stats, or scan for arbitrage opportunities above a funding threshold. Each call costs $0.002 to $0.003 in USDC on Base. Useful for carry trade hunting, delta-neutral strategies, or comparing HL funding against other exchanges to find cross-venue spreads. Responses include annualized rates, open interest, and mark prices. Payment happens automatically through x402, so no API keys or subscriptions.
Public tool metadata for what this MCP can expose to an agent.
hyperliquid_get_funding_ratesUse this when you need current funding rates across all Hyperliquid perpetual markets. Returns real-time funding rate, premium, open interest, and mark price for every listed perp coin on Hyperliquid1 paramsUse this when you need current funding rates across all Hyperliquid perpetual markets. Returns real-time funding rate, premium, open interest, and mark price for every listed perp coin on Hyperliquid
sortstringhighest · lowest · abshyperliquid_get_funding_historyUse this when you need historical funding rate data for a specific Hyperliquid perpetual market. Returns timestamped funding rate entries over a configurable lookback window, plus summary statistics i2 paramsUse this when you need historical funding rate data for a specific Hyperliquid perpetual market. Returns timestamped funding rate entries over a configurable lookback window, plus summary statistics i
coinstringhoursnumberhyperliquid_find_funding_arbUse this when you need to find funding rate arbitrage opportunities on Hyperliquid. Scans all 229 perp markets and returns coins where the absolute funding rate exceeds 0.01% per 8h period (annualized1 paramsUse this when you need to find funding rate arbitrage opportunities on Hyperliquid. Scans all 229 perp markets and returns coins where the absolute funding rate exceeds 0.01% per 8h period (annualized
thresholdnumberReal-time and historical funding rate data for all 229 Hyperliquid perpetual markets. Sort by rate, pull history, and find arbitrage opportunities -- all via a single x402-powered API.
| Endpoint | Method | Price | Description |
|---|---|---|---|
/api/rates | POST | $0.002 | Current funding rates for all 229 perp markets, sorted by rate |
/api/history | POST | $0.002 | Historical funding rate data for a specific coin |
/api/arb | POST | $0.003 | Find funding rate arbitrage opportunities (extreme rates) |
{
"api": "Hyperliquid Funding Rates API",
"status": "online",
"protocol": "x402",
"network": "base-mainnet"
}
Request:
{ "sort": "abs" }
Response:
{
"totalMarkets": 229,
"sort": "abs",
"timestamp": "2026-04-13T12:00:00.000Z",
"rates": [
{
"coin": "PEPE",
"fundingRate": 0.0005,
"annualizedRate": 54.75,
"premium": 0.001,
"openInterest": 85000000,
"markPrice": 0.0000125
},
{
"coin": "BTC",
"fundingRate": 0.000125,
"annualizedRate": 13.69,
"premium": 0.0002,
"openInterest": 1250000000,
"markPrice": 68500.5
}
]
}
Request:
{ "coin": "ETH", "hours": 24 }
Response:
{
"coin": "ETH",
"hours": 24,
"timestamp": "2026-04-13T12:00:00.000Z",
"entries": [
{ "time": "2026-04-13T08:00:00.000Z", "fundingRate": 0.0001, "annualizedRate": 10.95 },
{ "time": "2026-04-13T00:00:00.000Z", "fundingRate": 0.00012, "annualizedRate": 13.14 },
{ "time": "2026-04-12T16:00:00.000Z", "fundingRate": 0.00008, "annualizedRate": 8.76 }
],
"summary": {
"count": 3,
"avgRate": 0.0001,
"avgAnnualized": 10.95,
"minRate": 0.00008,
"maxRate": 0.00012,
"stdDev": 0.00001633
}
}
Request:
{ "threshold": 0.0001 }
Response:
{
"threshold": 0.0001,
"totalOpportunities": 12,
"longOpportunities": 5,
"shortOpportunities": 7,
"timestamp": "2026-04-13T12:00:00.000Z",
"opportunities": [
{
"coin": "PEPE",
"fundingRate": 0.0005,
"annualizedRate": 54.75,
"direction": "short opportunity",
"openInterest": 85000000,
"markPrice": 0.0000125,
"premium": 0.001
}
]
}
{
"mcpServers": {
"hl-funding": {
"url": "https://PLACEHOLDER.up.railway.app/sse"
}
}
}
smithery mcp install axel-belfort/hl-funding
All endpoints are gated by x402 protocol. Agents pay automatically with USDC on Base L2 -- no API keys, no accounts, no subscriptions. Just send a request and the payment is settled in under 2 seconds.