Skip to main content
Version: 2.x

Loan

 License: MIT 

Installation

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

Client instantiation

LoanClient client = new LoanClient(key, secret);

Features

Get crypto loans income history.

try{
List<LoanIncome> res = client.getLoansIncome(new LoanIncomeHistoryParams(asset)).sync();
}catch(ApiException e){
//...
}