An open API service indexing awesome lists of open source software.

https://github.com/wisespace-io/bitfinex-rs

Bitfinex trading api
https://github.com/wisespace-io/bitfinex-rs

bitcoin bitfinex cryptocurrency-exchanges rust trading-api

Last synced: 6 months ago
JSON representation

Bitfinex trading api

Awesome Lists containing this project

README

          

[![Crates.io](https://img.shields.io/crates/v/bitfinex.svg)](https://crates.io/crates/bitfinex)
[![Build Status](https://travis-ci.org/wisespace-io/bitfinex-rs.png?branch=master)](https://travis-ci.org/wisespace-io/bitfinex-rs)
[![MIT licensed](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE-MIT)
[![Apache-2.0 licensed](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](./LICENSE-APACHE)

# bitfinex-rs

Unofficial Rust Library for the [Bitfinex API V2](https://bitfinex.readme.io/v2/docs/getting-started)

# Risk Warning

It is a personal project, use at your own risk. I will not be responsible for your investment losses.
Cryptocurrency investment is subject to high market risk.

# Usage

Add this to your Cargo.toml

```toml
[dependencies]
bitfinex = { git = "https://github.com/wisespace-io/bitfinex-rs.git" }
```

## PUBLIC ENDPOINTS

Ticker, Trades, Book, Candles, see [example](https://github.com/wisespace-io/bitfinex-rs/blob/master/examples/src/public_endpoints.rs)

## PRIVATE ENDPOINTS

Wallets, Orders, Trades, Margin and Funding Info, see [example](https://github.com/wisespace-io/bitfinex-rs/blob/master/examples/src/private_endpoints.rs)

## PUBLIC CHANNELS (WEBSOCKETS)

Ticker, Trades, Book, Raw Book, Candles, see [example](https://github.com/wisespace-io/bitfinex-rs/blob/master/examples/src/public_channels.rs)

# Other Exchanges

If you use [Binance](https://www.binance.com/) check out my [Rust library for Binance API](https://github.com/wisespace-io/binance-rs)