Binance Connector JS
    Preparing search index...

    CapitalApi - interface CapitalApi

    interface CapitalApiInterface {
        allCoinsInformation(
            requestParameters?: AllCoinsInformationRequest,
        ): Promise<RestApiResponse<AllCoinsInformationResponse>>;
        depositAddress(
            requestParameters: DepositAddressRequest,
        ): Promise<RestApiResponse<DepositAddressResponse>>;
        depositHistory(
            requestParameters?: DepositHistoryRequest,
        ): Promise<RestApiResponse<DepositHistoryResponse>>;
        fetchDepositAddressListWithNetwork(
            requestParameters: FetchDepositAddressListWithNetworkRequest,
        ): Promise<RestApiResponse<FetchDepositAddressListWithNetworkResponse>>;
        fetchWithdrawAddressList(): Promise<
            RestApiResponse<FetchWithdrawAddressListResponse>,
        >;
        fetchWithdrawQuota(): Promise<RestApiResponse<FetchWithdrawQuotaResponse>>;
        oneClickArrivalDepositApply(
            requestParameters?: OneClickArrivalDepositApplyRequest,
        ): Promise<RestApiResponse<OneClickArrivalDepositApplyResponse>>;
        withdraw(
            requestParameters: WithdrawRequest,
        ): Promise<RestApiResponse<WithdrawResponse>>;
        withdrawHistory(
            requestParameters?: WithdrawHistoryRequest,
        ): Promise<RestApiResponse<WithdrawHistoryResponse>>;
    }

    Implemented by

    Index

    Methods

    • Fetch withdraw history.

      network may not be in the response for old withdraw. Please notice the default startTime and endTime to make sure that time interval is within 0-90 days. If both startTime and endTimeare sent, time between startTimeand endTimemust be less than 90 days. If withdrawOrderId is sent, time between startTime and endTime must be less than 7 days. If withdrawOrderId is sent, startTime and endTime are not sent, will return last 7 days records by default. Maximum support idList number is 45.

      Weight: 18000 Request limit: 10 requests per second

      Parameters

      Returns Promise<RestApiResponse<WithdrawHistoryResponse>>

      CapitalApiInterface