Binance Connector JS
    Preparing search index...

    TradeApi - interface TradeApi

    interface TradeApiInterface {
        vipLoanBorrow(
            requestParameters: VipLoanBorrowRequest,
        ): Promise<RestApiResponse<VipLoanBorrowResponse>>;
        vipLoanFixedRateBorrow(
            requestParameters: VipLoanFixedRateBorrowRequest,
        ): Promise<RestApiResponse<VipLoanFixedRateBorrowResponse>>;
        vipLoanRenew(
            requestParameters: VipLoanRenewRequest,
        ): Promise<RestApiResponse<VipLoanRenewResponse>>;
        vipLoanRepay(
            requestParameters: VipLoanRepayRequest,
        ): Promise<RestApiResponse<VipLoanRepayResponse>>;
    }

    Implemented by

    Index

    Methods

    • VIP loan is available for VIP users only.

      Weight(UID): 6000

      Security Type: TRADE

      Notes:

      • loanAccountId refers to the loan receiving account.
      • Only master account applications are supported.
      • loanAccountId and collateralAccountId must be under the same master account.
      • loanTerm is mandatory if the user chooses a fixed rate (isFlexibleRate = FALSE).
      • Rate limit: 1 request per 2 seconds per account.

      Parameters

      Returns Promise<RestApiResponse<VipLoanBorrowResponse>>

      TradeApiInterface