Twits du Jour (Jan 22)
<1 min read
- Port flush and pick-up some 💊 instagr.am/p/CZDDnlkPrvu/ pic.twitter.com/halXIEZOyO #
I've just released the first public version of CryptoPrice. A small Kotlin/Java library to retrieve cryptocurrencies current prices from the Coinbase Public API.
val btc = spotPrice("BTC") // Bitcoin
println(btc.amount)
val eth = spotPrice("ETH", "EUR") // Ethereum in Euros
println(eth.amount)
As usual documentation and source are on GitHub.