Skip to content

Method - get_funding

Returns FundingInfoDto for a perpetual futures symbol: current rate, next funding time, optional mark/index prices.


Contract (arguments)

ArgumentRequiredDefaultNotes
exchangeyes
symbolyesFutures pair, e.g. BTCUSDT
waitSecondsno20Clamped 5–60

Response shape

FundingInfoDto: rate, next_funding_time_utc, optional mark_price, index_price.


Example tools/call

json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_funding",
    "arguments": {
      "exchange": "Binance",
      "symbol": "BTCUSDT",
      "waitSeconds": 25
    }
  }
}

Example success

json
{
  "rate": 0.0001,
  "next_funding_time_utc": "2026-04-26T08:00:00Z",
  "mark_price": 98200.5,
  "index_price": 98190.0
}

← MCP overview