Laravel implementation of the Kraken crypto exchange trading API
composer require adman9000/laravel-kraken
Utilises autoloading in Laravel 5.5+. For older versions add the following lines to your config/app.php
'providers' => [
...
adman9000\kraken\KrakenServiceProvider::class,
...
],
'aliases' => [
...
'Kraken' => adman9000\kraken\KrakenAPIFacade::class,
],
Price tickers, balances, trades, deposits and withdrawals
Kraken API is quite unreliable. If the endpoint is down it returns a json encode error, retrying will sometimes work.