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

Method futuresPrices

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

* @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Price-Ticker-v2 *

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

Source from the content-addressed store, hash-verified

4510 *
4511 */
4512 async futuresPrices(symbol?: string, params: Dict = {}): Promise<{ [key: string]: number }> {
4513 if (symbol) params.symbol = symbol;
4514 const data = await this.publicFuturesRequest('v2/ticker/price', params);
4515 return this.priceData(data);
4516 }
4517
4518 /**
4519 * @see https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics

Callers 1

Calls 2

publicFuturesRequestMethod · 0.95
priceDataMethod · 0.95

Tested by

no test coverage detected