MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / futuresFundingRate

Method futuresFundingRate

src/node-binance-api.ts:4656–4659  ·  view source on GitHub ↗

* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Get-Funding-Rate-Info * @param symbol symbol if the market * @param params extra parameters to be sent in the request * @returns

(symbol: string, params: Dict = {})

Source from the content-addressed store, hash-verified

4654 * @returns
4655 */
4656 async futuresFundingRate(symbol: string, params: Dict = {}): Promise<FundingRate[]> {
4657 params.symbol = symbol;
4658 return await this.publicFuturesRequest('v1/fundingRate', params);
4659 }
4660
4661 /**
4662 * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/account/rest-api/Notional-and-Leverage-Brackets#http-request

Callers

nothing calls this directly

Calls 1

publicFuturesRequestMethod · 0.95

Tested by

no test coverage detected