Skip to main content

Get Historical Funding Rate

Get historical funding rate data for a futures symbol with time-based filtering.

HTTP Request

GET /api/v1/future/market/history-fund-rate

Request Parameters

ParameterTypeRequiredDescription
symbolstringYesTrading pair symbol (e.g., BTCUSDT)
limitnumberNoNumber of records to return (default: 100, max: 1000)
startTimenumberNoStart time in milliseconds (Unix timestamp)
endTimenumberNoEnd time in milliseconds (Unix timestamp)

Request Example

Basic Request

curl -X GET "https://open-api.bydoxe.com/api/v1/future/market/history-fund-rate?symbol=BTCUSDT&limit=100"

Request with Time Range

curl -X GET "https://open-api.bydoxe.com/api/v1/future/market/history-fund-rate?symbol=BTCUSDT&startTime=1732000000000&endTime=1732086400000&limit=100"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataarrayArray of historical funding rate data
> symbolstringTrading pair symbol
> fundingRatestringFunding rate value
> fundingTimenumberFunding time in milliseconds (Unix timestamp)

Response Example

Success Response

{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"symbol": "BTCUSDT",
"fundingRate": "0.0001",
"fundingTime": 1763459280833
}
]
}

Error Codes

CodeMessage
40034symbol does not exist
50010Upstream response invalid