Funding API
FundingPublicApi
GET Get Latest Funding Rate by Contract ID
GET /api/v1/public/funding/getLatestFundingRate
Request Parameters
contractId
query
string
No
Contract ID
Example Response
200 Response
Response Codes
200
default response
GET Get Funding Rate History by Contract ID with Pagination
GET /api/v1/public/funding/getFundingRatePage
Request Parameters
contractId
query
string
No
Contract ID
size
query
string
No
Number of items to retrieve. Must be greater than 0 and less than or equal to 100
offsetData
query
string
No
Pagination offset. If not provided or empty, retrieves the first page
filterSettlementFundingRate
query
string
No
If true, only query settlement funding rates (funding rate settlement occurs every 8 hours, with a predicted funding rate calculated every minute)
filterBeginTimeInclusive
query
string
No
Start time. If not provided, retrieves the oldest data
filterEndTimeExclusive
query
string
No
End time. If not provided, retrieves the latest data
Example Response
200 Response
Response Codes
200
default response
Data Models
pagedatafundingrate
code
string
false
none
Status code. "SUCCESS" for success, otherwise indicates failure
data
false
none
General pagination response
errorParam
object
false
none
Parameter information in the error message
requestTime
string(timestamp)
false
none
Server request reception time
responseTime
string(timestamp)
false
none
Server response time
traceId
string
false
none
Call trace ID
schemapagedatafundingrate
dataList
false
none
Data list
nextPageOffsetData
string
false
none
Offset data to retrieve the next page. Empty string if there is no next page
listfundingrate
code
string
false
none
Status code. "SUCCESS" for success, otherwise indicates failure
data
false
none
Successful response data
errorParam
object
false
none
Parameter information in the error message
requestTime
string(timestamp)
false
none
Server request reception time
responseTime
string(timestamp)
false
none
Server response time
traceId
string
false
none
Call trace ID
schemafundingrate
contractId
string(int64)
false
none
Contract ID
fundingTime
string(int64)
false
none
Funding rate settlement time. E.g., the funding rate for the 08:00-09:00 period is calculated from the previous 07:00-08:00 data, finalized at 08:00, and used for settlement at 09:00
fundingTimestamp
string(int64)
false
none
Funding rate calculation time in milliseconds
oraclePrice
string
false
none
Oracle price
indexPrice
string
false
none
Index price
fundingRate
string
false
none
Funding rate
isSettlement
boolean
false
none
Funding rate settlement flag
forecastFundingRate
string
false
none
Forecast funding rate
previousFundingRate
string
false
none
Previous funding rate
previousFundingTimestamp
string(int64)
false
none
Previous funding rate calculation time in milliseconds
premiumIndex
string
false
none
Premium index
avgPremiumIndex
string
false
none
Average premium index
premiumIndexTimestamp
string
false
none
Premium index calculation time
impactMarginNotional
string
false
none
Quantity required for deep weighted buy/sell price calculation
impactAskPrice
string
false
none
Deep weighted ask price
impactBidPrice
string
false
none
Deep weighted bid price
interestRate
string
false
none
Fixed interest rate
predictedFundingRate
string
false
none
Comprehensive interest rate (interestRate/frequency)
fundingRateIntervalMin
string(int64)
false
none
Funding rate time interval in minutes
starkExFundingIndex
string
false
none
StarkEx funding index
Last updated