Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

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)
//...