> ## Documentation Index
> Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Funding Rates

Cross-venue predicted funding rates for every perpetual asset. Compares rates across HyperLiquid, Binance, Bybit, and other venues.

Returns an array of `[asset, venues]` pairs. Each venue provides its predicted funding rate, next funding time, and funding interval.

## Example

```bash theme={null}
curl -H "x-api-key: YOUR_KEY" https://hyper.polynode.dev/v2/funding-rates
```

```json theme={null}
[
  [
    "BTC",
    [
      ["BinPerp", {"fundingRate": "-0.00088805", "nextFundingTime": 1776096000000, "fundingIntervalHours": 4}],
      ["HlPerp", {"fundingRate": "-0.0003262298", "nextFundingTime": 1776092400000, "fundingIntervalHours": 1}],
      ["BybitPerp", {"fundingRate": "0.00003398", "nextFundingTime": 1776096000000, "fundingIntervalHours": 4}]
    ]
  ]
]
```

| Field                  | Description                                                    |
| ---------------------- | -------------------------------------------------------------- |
| `fundingRate`          | Predicted rate for next interval (positive = longs pay shorts) |
| `nextFundingTime`      | Unix ms timestamp of next funding settlement                   |
| `fundingIntervalHours` | Hours between funding settlements (1 for HL, 4/8 for others)   |
