Get balances of the current user.
var walletBalances = cobinhoodClient.GetWalletBalances().Result; public async Task<WalletBalancesInfo> GetWalletBalances()Get balance history for the current user.
var ledgerEntries = cobinhoodClient.GetLedgerEntries("ETH").Result; public async Task<LedgerEntriesInfo> GetLedgerEntries(string currency = "", int? limit = null, int? page = null)Get Wallet Deposit Addresses.
var depositAddrresses = cobinhoodClient.GetDepositAddresses().Result; public async Task<DepositAddressesInfo> GetDepositAddresses(string currency = "")Get Wallet Withdrawal Addresses.
var withdrawalAddresses = cobinhoodClient.GetWithdrawalAddresses("ETH").Result; public async Task<WithdrawalAddressesInfo> GetWithdrawalAddresses(string currency = "")Get Withdrawal Information.
var withdrawalInfo = cobinhoodClient.GetWithdrawal("62056df2d4cf8fb9b15c7238b89a1438").Result; public async Task<WithdrawalInfo> GetWithdrawal(string withdrawalId)Get All Withdrawals.
var withdrawalsInfo = cobinhoodClient.GetAllWithdrawals("ETH").Result; public async Task<AllWithdrawalInfo> GetAllWithdrawals(string currency = "", WithdrawalStatus withdrawalStatus = WithdrawalStatus.All, int? limit = null, int? page = null)Get Deposit Information.
var depositInfo = cobinhoodClient.GetDeposit("00227f3d-02d7-47cb-8cbc-7768ee04815f").Result; public async Task<DepositInfo> GetDeposit(string depositId)Get All Deposits.
var depositsInfo = cobinhoodClient.GetAllDeposits().Result; public async Task<AllDepositsInfo> GetAllDeposits()