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

Method privateDeliveryRequest

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

* Used to make private requests to the delivery (DAPI) API * @param path * @param data * @param method * @returns

(path: string, data: Dict = {}, method: HttpMethod = 'GET')

Source from the content-addressed store, hash-verified

587 * @returns
588 */
589 async privateDeliveryRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET'): Promise<any> {
590 return await this.futuresRequest(this.getDapiUrl() + path, data, method, true);
591 }
592
593 /**
594 * Used to make a request to the futures API, this is a generic function that can be used to make any request to the futures API

Callers 15

deliveryOrderMethod · 0.95
deliveryUserTradesMethod · 0.95
deliveryGetDataStreamMethod · 0.95
deliveryPositionRiskMethod · 0.95
deliveryLeverageMethod · 0.95
deliveryMarginTypeMethod · 0.95

Calls 2

futuresRequestMethod · 0.95
getDapiUrlMethod · 0.95

Tested by

no test coverage detected