Skip to main content
POST
/
api
/
v4
/
collateral-account
/
funding-history
Funding History
curl --request POST \
  --url https://whitebit.com/api/v4/collateral-account/funding-history \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "market": "BTC_PERP",
  "limit": 100,
  "offset": 0,
  "request": "{{request}}",
  "nonce": "{{nonce}}"
}
'
{
  "records": [
    {
      "market": "BTC_PERP",
      "fundingTime": "1734451200",
      "fundingRate": "0.00017674",
      "fundingAmount": "-0.171053531892",
      "positionAmount": "0.019",
      "settlementPrice": "50938.2",
      "rateCalculatedTime": "1734364800"
    },
    {
      "market": "BTC_PERP",
      "fundingTime": "1734451200",
      "fundingRate": "-0.000177877800093587",
      "fundingAmount": "-0.0054997859133136",
      "positionAmount": "-0.001",
      "settlementPrice": "30918.9",
      "rateCalculatedTime": "1734364800"
    }
  ],
  "limit": 100,
  "offset": 0
}

Authorizations

X-TXC-APIKEY
string
header
required

API Key authentication for private endpoints.

Required headers:

  • X-TXC-APIKEY: API key
  • X-TXC-PAYLOAD: Base64 encoded JSON payload
  • X-TXC-SIGNATURE: HMAC SHA512 signature

Body

application/json
market
string

Filter by specific market. For example: BTC_PERP

If not specified, returns funding history for all markets.

Example:

"BTC_PERP"

limit
integer
default:100

Number of records to return

Example:

100

offset
integer
default:0

Number of records to skip

Example:

0

request
string

Request signature

Example:

"{{request}}"

nonce
string

Unique request identifier

Example:

"{{nonce}}"

Response

Successful response - returns paginated funding history

records
object[]

Array of funding history entries

limit
integer

Number of records per page

Example:

100

offset
integer

Number of records skipped

Example:

0