curl --request POST \
--url https://api.hyperliquid.xyz/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "predictedFundings"
}
'[
[
"BTC",
[
[
"BinPerp",
{
"fundingRate": "0.00008786",
"nextFundingTime": 1754496000000
}
],
[
"HlPerp",
{
"fundingRate": "0.0000125",
"nextFundingTime": 1754470800000
}
],
[
"BybitPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1754496000000
}
]
]
],
[
"ETH",
[
[
"BinPerp",
{
"fundingRate": "0.00008147",
"nextFundingTime": 1754496000000
}
],
[
"HlPerp",
{
"fundingRate": "0.0000104019",
"nextFundingTime": 1754470800000
}
],
[
"BybitPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1754496000000
}
]
]
]
]curl --request POST \
--url https://api.hyperliquid.xyz/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "predictedFundings"
}
'[
[
"BTC",
[
[
"BinPerp",
{
"fundingRate": "0.00008786",
"nextFundingTime": 1754496000000
}
],
[
"HlPerp",
{
"fundingRate": "0.0000125",
"nextFundingTime": 1754470800000
}
],
[
"BybitPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1754496000000
}
]
]
],
[
"ETH",
[
[
"BinPerp",
{
"fundingRate": "0.00008147",
"nextFundingTime": 1754496000000
}
],
[
"HlPerp",
{
"fundingRate": "0.0000104019",
"nextFundingTime": 1754470800000
}
],
[
"BybitPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1754496000000
}
]
]
]
]info endpoint with type: "predictedFundings" retrieves predicted funding rates for all perpetual contracts across different exchanges including Binance Perp, Hyperliquid Perp, and Bybit Perp. This endpoint provides comprehensive market data for cross-exchange arbitrage strategies, funding cost analysis, and market sentiment evaluation.
type (string, required) — The request type. Must be "predictedFundings" to retrieve predicted funding rates across exchanges.fundingRate (string) — The predicted funding rate as a decimal stringnextFundingTime (number) — Unix timestamp in milliseconds for the next funding paymentnull — Indicates the asset is not available on that exchangecurl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "predictedFundings"}' \
https://api.hyperliquid.xyz/info
[
[
"AVAX",
[
[
"BinPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1733961600000
}
],
[
"HlPerp",
{
"fundingRate": "0.0000125",
"nextFundingTime": 1733958000000
}
],
[
"BybitPerp",
{
"fundingRate": "0.0001",
"nextFundingTime": 1733961600000
}
]
]
]
]
null values)The request type for predicted funding rates
Successfully retrieved predicted funding rates for all assets across exchanges
Was this page helpful?