Skip to content
Alchemy Logo

Predicted fundings

This API is in private preview. Target October 2026; timing is subject to change.

Returns predicted funding rates and scheduled funding times for the first perpetual DEX.

Coming with HyperCore. This read is documented but is not yet callable.

POST /{apiKey}/info

ParameterTypeRequiredDescription
typestringYesSelects predictedFundings.
{
  "type": "predictedFundings"
}

FieldTypeDescription
[]arrayOne tuple per market containing its funding predictions.
[][0]stringMarket symbol for this prediction tuple.
[][1]arrayPredictions grouped by the venues contributing rates.
[][1][][0]string | nullVenue identifier, or null when that venue has no entry.
[][1][][1]objectFunding-rate schedule reported by the associated venue.
[][1][][1].fundingRatestringPredicted funding rate for the next interval.
[][1][][1].nextFundingTimeintegerNext scheduled funding time in milliseconds.
[][1][][1].fundingIntervalHoursintegerHours between funding events for this venue.

[
  [
    "AVAX",
    [
      [
        "HlPerp",
        { "fundingRate": "0.0000125", "nextFundingTime": 1733958000000 }
      ]
    ]
  ]
]
Was this page helpful?