Skip to main content
Version: 2.x

C2C

 License: MIT 

Installation

pom.xml
<dependency>
<groupId>{{groupId}}</groupId>
<artifactId>{{artifactId}}</artifactId>
<version>{{version}}</version>
</dependency>

Client instantiation

BLVTClient client = new BLVTClient(key, secret);

Features

Get trades

try{
TradeHistory res = client.getTrades(new TradeHistoryParams(TradeType.BUY)).sync();
}catch(ApiException e){
//...
}