Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (19 loc) · 749 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 749 Bytes

Java API Wrapper for Binary.com

Build Status

A higher-level wrapper around Binary.com API for Java.

Usage

ApiWrapper api = ApiWrapper.build(appId, language, websocketURL);

TickRequest request = new TickRequest("R_10");

api.sendRequest(request)
    .subscribe(
            response -> {
                System.out.printf("epoch: %S, price: %s", 
                    response.getTick().getEpoch(), responce.getTick().getQuote());
            }
    );

API Documentation

Binary.com API documentation