Returns info for all currencies available for trade.
var currencies = cobinhoodClient.GetAllCurrencies().Result; public async Task<CurrenciesInfo> GetAllCurrencies()Get info for all trading pairs.
var trandingPairs = cobinhoodClient.GetAllTradingPairs().Result; public async Task<TradingPairsInfo> GetAllTradingPairs()Get order book for the trading pair containing all asks/bids.
var orderBook = cobinhoodClient.GetOrderBook("ETH", "BTC").Result; public async Task<OrderBookInfo> GetOrderBook(string quoteSymbol, string baseSymbol)Gets Trading Statistics.
var tradingStatics = cobinhoodClient.GetTradingStatics().Result; public async Task<TradingStaticsInfo> GetTradingStatics()Returns ticker for specified trading pair.
var ticker = cobinhoodClient.GetTicker("ETH", "BTC").Result; public async Task<TickerInfo> GetTicker(string quoteSymbol, string baseSymbol)Returns most recent trades for the specified trading pair.
var recentTrades = cobinhoodClient.GetRecentTrades("ETH", "BTC").Result; public async Task<RecentTradesInfo> GetRecentTrades(string quoteSymbol, string baseSymbol)