跳到主要内容

Get Funding Rate History

Type: NONE

Weight: 1

GET /fapi/v1/fundingRate

Funding rate history for a symbol. Public endpoint: no X-MBX-APIKEY, timestamp or signature required.

Request

GET /fapi/v1/fundingRate?symbol=BTCUSDT&limit=100

Query params

NameTypeRequiredDefaultNotes
symbolstringnoWithout it the response is the current rate of every symbol (one row each), not a history.
startTime / endTimelongnoParsed but ignored — only the latest limit rows are returned.
limitintegerno100max 1000

Response — 200

[
{
"symbol": "BTCUSDT",
"fundingRate": "0.0001",
"fundingTime": 1714291200000,
"markPrice": "60050.50"
}
]

Sparky differences

  • Time filtering is not applied; trim client-side.
  • Omitting symbol returns one current row per symbol rather than a time-ordered multi-symbol history.
  • Funding settles every 8 h by default (00:00 / 08:00 / 16:00 UTC); the interval is per market — see Funding Info.

Errors

HTTPcodemsg
400-1121Invalid symbol.