Skip to main content
GET
/
api
/
v4
/
public
/
funding-history
/
{market}
Funding History
curl --request GET \
  --url https://whitebit.com/api/v4/public/funding-history/{market}
[
  {
    "fundingTime": "1752537600",
    "fundingRate": "-0.0001229",
    "market": "BTC_PERP",
    "settlementPrice": "119816.5",
    "rateCalculatedTime": "1752508800"
  }
]

Path Parameters

market
string
required

Market name (e.g., BTC_PERP)

Example:

"BTC_PERP"

Query Parameters

startDate
integer

Start timestamp in seconds

Example:

1752480000

endDate
integer

End timestamp in seconds

Example:

1752537600

limit
integer
default:100

Number of records to return. Default: 100, Maximum: 1000

Required range: 1 <= x <= 1000
Example:

100

offset
integer
default:0

Number of records to skip

Required range: x >= 0
Example:

0

Response

200 - application/json

Successful response

fundingTime
string

Timestamp when funding was executed

Example:

"1752537600"

fundingRate
string

Funding rate value

Example:

"-0.0001229"

market
string

Market name

Example:

"BTC_PERP"

settlementPrice
string

Price at which funding was settled

Example:

"119816.5"

rateCalculatedTime
string

Timestamp when the funding rate was calculated

Example:

"1752508800"