Menu

Home

Andre Powroznik

(My Personal) JBitcoin-24

Welcome!

Java API to Bitcoin-24. Supported features include Account Balance, Bitcoin Address, Open Orders, Cancel Order, Trades, Buy Bitcoin and Sell Bitcoin.

Please also check ABitcoin-24 on Google Play!

https://play.google.com/store/apps/details?id=com.powroznik.abitcoin24

Example:


Bitcoin24Interface bitcoin24 = new Bitcoin24Implementation("your username", "your API key");

AccountBalance accountBalance = bitcoin24.getAccountBalance();
System.out.println("Eur = " + accountBalance.getEur());
System.out.println("Usd = " + accountBalance.getUsd());
System.out.println("Btc = " + accountBalance.getBtc());
System.out.println("Btc Available = " + accountBalance.getBtcAvailable());
System.out.println();

System.out.println("Bitcoin address = " + bitcoin24.getBitcoinAddress());


(My Personal) JBitcoin-24 is neither endorsed by nor otherwise affiliated with Bitcoin-24.