Skip to content
Alchemy Logo

fundingRates stream

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

{
  "method": "subscribe",
  "subscription": {
    "type": "fundingRates",
    "coins": ["BTC"]
  }
}

{
  "channel": "subscriptionResponse",
  "data": {
    "subscriptionId": "sub_01",
    "type": "fundingRates"
  }
}

{
  "channel": "fundingRates",
  "subscriptionId": "sub_01",
  "blockHeight": 123456,
  "blockTime": 1780000000000,
  "cursor": "<opaque cursor>",
  "data": {
    "coin": "BTC",
    "fundingRate": "0.00001"
  }
}

FieldTypeDescription
coinstringMarket symbol for the funding update.
fundingRatestringFunding rate for the market.

{
  "method": "unsubscribe",
  "subscription": {
    "type": "fundingRates",
    "coins": ["BTC"]
  }
}

To resume a stream, supply cursor in the subscription object. The cursor is opaque: clients store and return it unmodified, and its format may change.

Was this page helpful?