bittrex-api provides a wrapper for the Bittrex API.
This crate makes it easy to consume the Bittrex API in Rust.
``` extern crate bittrex_api;
use bittrex_api::BittrexClient;
let bittrexclient = BittrexClient::new("KEY".tostring(), "SECRET".tostring()); // Initialize the Bittrex Client with your API Key and Secret let markets = bittrexclient.get_markets().unwrap(); //Get all available markets of Bittrex ```
See the Documentation for more information about the various wrapper functions.