Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 365 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 365 Bytes

Java library to connect to the Luno REST API

Build the library

./gradlew build

Usage

// create the API instance
LunoAPI luno = new LunoAPIImpl("key", "secret");
// use the API
LunoOrders listorders = luno.listOrders(State.PENDING, null)
//...