# 2s.io Hyperliquid Predicted Funding Rates

> 2s.io Hyperliquid Predicted Funding Rates is a paid API for AI agents from 2s.io, paid per call via x402, $0.0036/call, status unknown (last checked 2026-09-15).

Returns predicted next funding rates per coin across Hyperliquid, Binance, and Bybit perpetuals for cross-venue funding-rate arbitrage.

## Facts

- Endpoint: GET https://2s.io/api/crypto/hyperliquid-predicted-funding
- Price: $0.0036/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-hyperliquid-predicted-funding-rates-ca296498
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5z4PnYNvEqmUXXwwHVtvJ

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 2s-io-hyperliquid-predicted-funding-rates-ca296498
```

Example prompt: What are the predicted next funding rates for BTC across Hyperliquid, Binance, and Bybit — including the next funding time and interval for each venue — so I can spot arbitrage opportunities?

## When to prefer this

Use this endpoint when you need real-time predicted funding rates across multiple perp venues (Hyperliquid, Binance, Bybit) for funding-rate arbitrage strategies. Prefer it over generic market data APIs when you specifically need forward-looking (predicted) funding rates with venue-level granularity and cross-exchange comparison in a single call.

## Known failure modes

- Unknown or unsupported coin symbol returns empty results or error
- Limit parameter out of range (must be 1–250) returns validation error
- Downstream exchange data unavailable causes stale or missing funding rate data
- Rate limiting or payment failure returns 402 Payment Required

## How this service works

Predicted next funding rates per coin across venues (Hyperliquid + Binance/Bybit perps), free/keyless. For each coin, a list of venues with predicted funding rate, next funding time, and funding interval — for cross-venue funding-rate arbitrage. Filter by coin.

## Output

A list of venues (Hyperliquid, Binance, Bybit) for the queried coin(s), each with the predicted funding rate, next funding time (timestamp), and funding interval — enabling cross-venue funding-rate arbitrage analysis.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "coin": {
       "type": "string",
       "maxLength": 40
      },
      "limit": {
       "type": "integer",
       "maximum": 250,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-hyperliquid-predicted-funding-rates-ca296498/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
