Simple API client to work with kraken.
All calls of the api are implemented: https://www.kraken.com/help/api
Kraken api is available on Packagist (using semantic versioning), and installation via composer is the recommended way to install Kraken-api. Just add this line to your composer.json
file:
"hanischit/kraken-api": "^1.1.5"
or run
composer require hanischit/kraken-api
The API declares the namespace \HanischIt\KrakenApi
.
require_once(__DIR__ . '/../vendor/autoload.php');
try {
$api = new \HanischIt\KrakenApi\KrakenApi("Your-API-Key", "Your-API-Sign");
$serverTimeResponse = $api->getServerTime();
echo "UnixTime: " . $serverTimeResponse->getUnixTime() . "\n";
echo "rfc1123: " . $serverTimeResponse->getRfc1123();
} catch (Exception $e) {
echo $e->getMessage();
}
See examples folder for more examples.
There is a PHPUnit test script in the test folder.
Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately.
Please submit bug reports, suggestions and pull requests to the GitHub issue tracker.