Appearance
Get Funding Rate
Rate Limit: 10 req/sec/ip
Description
Get the current funding rate of the contract
HTTP Request
- GET /api/v1/futures/market/funding_rate
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
symbol | string | true | Trading pair, based on the symbolName, i.e. BTCUSDT |
Request Example
bash
curl -X 'GET' --location 'https://fapi.bitunix.com/api/v1/futures/market/funding_rate?symbol=BTCUSDT'
Response Parameters
Parameter | Type | Description |
---|---|---|
symbol | string | Coin pair |
markPrice | decimal | mark price |
lastPrice | decimal | last price |
fundingRate | decimal | Current funding rates |
Response Example
json
{"code":0,"data":[{"symbol":"BTCUSDT","markPrice":"60000","lastPrice":"60001","fundingRate":"0.0005"}],"msg":"Success"}