Binance Connector JS
    Preparing search index...

    FiatApi - interface FiatApi

    interface FiatApiInterface {
        deposit(
            requestParameters: DepositRequest,
        ): Promise<RestApiResponse<DepositResponse>>;
        fiatWithdraw(
            requestParameters: FiatWithdrawRequest,
        ): Promise<RestApiResponse<FiatWithdrawResponse>>;
        getFiatDepositWithdrawHistory(
            requestParameters: GetFiatDepositWithdrawHistoryRequest,
        ): Promise<RestApiResponse<GetFiatDepositWithdrawHistoryResponse>>;
        getFiatPaymentsHistory(
            requestParameters: GetFiatPaymentsHistoryRequest,
        ): Promise<RestApiResponse<GetFiatPaymentsHistoryResponse>>;
        getOrderDetail(
            requestParameters: GetOrderDetailRequest,
        ): Promise<RestApiResponse<GetOrderDetailResponse>>;
    }

    Implemented by

    Index

    Methods

    • Submit deposit request, in this version, we only support BRL deposit via pix.

      For BRL deposit via pix, you need to place an order before making a transfer from your bank.

      Before calling this api, please make sure you have already completed your KYC or KYB, and already activated your fiat service on our website.

      Weight: 45000

      Parameters

      Returns Promise<RestApiResponse<DepositResponse>>

      FiatApiInterface

    • Submit withdraw request, in this version, we only support BRL withdrawal via bank_transfer.

      You need to call this api first, and call query order detail api in a loop to get the status of the order until this order is successful.

      Before calling this api, please make sure you have already completed your KYC or KYB, and already activated your fiat service on our website.

      you need to bind your bank account on web/app before using the corresponding account number

      Weight: 45000

      Parameters

      Returns Promise<RestApiResponse<FiatWithdrawResponse>>

      FiatApiInterface