All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bybit.api.client.restApi.BybitApiAsyncAccountRestClient Maven / Gradle / Ivy

Go to download

The Official Java API connector for Bybit's HTTP and WebSocket APIs. Dive into a plethora of functionalities: - Market Data Retrieval - Trade Execution - Position Management - Account and Asset Info Retrieval - User and Upgrade Management — Public Websocket Streaming - Private Websocket Streaming - Lending Institution and Client - Broker Earning Data

The newest version!
package com.bybit.api.client.restApi;

import com.bybit.api.client.domain.account.request.AccountDataRequest;
import com.bybit.api.client.domain.account.request.BatchSetCollateralCoinRequest;

public interface BybitApiAsyncAccountRestClient {
    // Account endpoints
    void getWalletBalance(AccountDataRequest walletBalanceRequest, BybitApiCallback callback);
    void upgradeAccountToUTA(BybitApiCallback callback);
    void getAccountBorrowHistory(AccountDataRequest borrowHistoryRequest, BybitApiCallback callback);
    void setAccountCollateralCoin(AccountDataRequest setCollateralCoinRequest, BybitApiCallback callback);
    void batchSetAccountCollateralCoin(BatchSetCollateralCoinRequest batchSetCollateralCoinRequest, BybitApiCallback callback);
    void getAccountCollateralInfo(AccountDataRequest request, BybitApiCallback callback);
    void getAccountCoinGeeks(AccountDataRequest request, BybitApiCallback callback);
    void getAccountFreeRate(AccountDataRequest getFeeRateRequest, BybitApiCallback callback);
    void getAccountInfo(BybitApiCallback callback);
    void getTransactionLog(AccountDataRequest getTransactionLogRequest, BybitApiCallback callback);
    void setAccountMarginMode(AccountDataRequest request, BybitApiCallback callback);
    void modifyAccountMMP(AccountDataRequest setMMPRequest, BybitApiCallback callback);
    void resetAccountMMP(AccountDataRequest request, BybitApiCallback callback);
    void getAccountMMPState(AccountDataRequest request, BybitApiCallback callback);
    void getAccountSMPGroup(BybitApiCallback callback);
    void setAccountSpotHedging(AccountDataRequest request, BybitApiCallback callback);
}