5 unstable releases

Uses old Rust 2015

0.3.2 Aug 10, 2017
0.3.1 Aug 9, 2017
0.3.0 Aug 8, 2017
0.2.0 Aug 8, 2017
0.1.0 Aug 8, 2017

#368 in #api-wrapper

MIT license

40KB
729 lines

Build Status MIT licensed Crates

bittrex-api

bittrex-api provides a wrapper for the Bittrex API.
This crate makes it easy to consume the Bittrex API in Rust.

Example

extern crate bittrex_api;

use bittrex_api::BittrexClient;

let bittrex_client = BittrexClient::new("KEY".to_string(), "SECRET".to_string()); // Initialize the Bittrex Client with your API Key and Secret
let markets = bittrex_client.get_markets().unwrap(); //Get all available markets of Bittrex

See the Documentation for more information about the various wrapper functions.


lib.rs:

bittrex-api

bittrex-api provides a wrapper for the Bittrex API. This crate makes it easy to consume the Bittrex API in Rust.

##Example

extern crate bittrex_api;

use bittrex_api::BittrexClient;
let bittrex_client = BittrexClient::new("KEY".to_string(), "SECRET".to_string()); // Initialize the Bittrex Client with your API Key and Secret
let markets = bittrex_client.get_markets().unwrap(); //Get all available markets of Bittrex

Dependencies

~16–27MB
~417K SLoC