> ## 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.

# Predicted Fundings

Predicted funding rates for the next funding interval per asset.

Returns an array of `[asset, venues]` pairs, where each venue provides its predicted rate, next funding time, and 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}]
    ]
  ]
]
```
