Get Funding Charges

Get funding payment history for the authenticated account. If no end time is provided, the current time will be used. Maximum of 100 entries returned per request.

get/v1/account/funding

Query parameters

instrument_idinteger

Instrument ID

start_timestampinteger

Start timestamp in milliseconds

Example:1767225600000
end_timestampinteger

End timestamp in milliseconds

Example:1767229200000

Response

Account funding history response.

moreboolean required

More data available

Example response

{
  "data": [
    {
      "id": 3055723280187747,
      "instrument_id": 1,
      "size": "10.00",
      "funding_rate": "0.0001",
      "funding_asset": "USDC",
      "funding": "1.00",
      "timestamp": 1767225600000
    }
  ]
}

Changes

Changed in 2 of the 7 revisions of this API.121

  • 734bf911b1be12See the full diff
    • for the query request parameter instrument_id, the type/format was changed from integer/ to integer/int64

      request-parameter-type-changed

    • for the query request parameter instrument_id, the max was set to 4294967295.00

      request-parameter-max-set

    • for the query request parameter instrument_id, the min was set to 0.00

      request-parameter-min-set

    • added the required property data/items/id to the response with the 200 status

      response-required-property-added