20/01
2018
Wallogit.com
2017 © Pedro Peláez
Kraken.com Trading API integration for Laravel
Laravel implementation of the Kraken crypto exchange trading API, (*1)
composer require adman9000/laravel-kraken
Utilises autoloading in Laravel 5.5+. For older versions add the following lines to your config/app.php, (*2)
'providers' => [
...
adman9000\kraken\KrakenServiceProvider::class,
...
],
'aliases' => [
...
'Kraken' => adman9000\kraken\KrakenAPIFacade::class,
],
Price tickers, balances, trades, deposits and withdrawals, (*3)
Kraken API is quite unreliable. If the endpoint is down it returns a json encode error, retrying will sometimes work., (*4)