For the complete documentation index, see llms.txt. This page is also available as Markdown.

Funding Rate

Query Current Funding Rates

get
/info/fundingRate/current
Query parameters
symbolinteger · int64Optional

Symbol code. Omit for all symbols.

Responses
200

Current funding rate(s)

No content

get/info/fundingRate/current
const resp = await fetch(`${BASE_URL}/info/fundingRate/current?symbol=1`);
200

Current funding rate(s)

No content

Query Funding Rate History

get
/info/fundingRate/history
Query parameters
symbolinteger · int64Required
pageintegerOptionalDefault: 1
pageSizeintegerOptionalDefault: 20
startTimeinteger · int64Optional
endTimeinteger · int64Optional
Responses
200

Paginated funding rate history

No content

get/info/fundingRate/history
const resp = await fetch(
  `${BASE_URL}/info/fundingRate/history?symbol=1&page=1&pageSize=20`
);
200

Paginated funding rate history

No content

Query User Funding History

get
/info/funding/history

Query a user's funding fee settlement history.

Query parameters
userAddrstringRequired
symbolinteger · int64Optional
pageintegerOptionalDefault: 1
pageSizeintegerOptionalDefault: 20
startTimeinteger · int64Optional
endTimeinteger · int64Optional
Responses
200

Paginated user funding history

No content

get/info/funding/history
const resp = await fetch(
  `${BASE_URL}/info/funding/history?userAddr=0xabc...&symbol=1`
);
200

Paginated user funding history

No content

Last updated