PHPackages                             hanischit/kraken-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. hanischit/kraken-api

AbandonedArchivedLibrary[API Development](/categories/api)

hanischit/kraken-api
====================

A API-Client for the crypto market Kraken.com.

1.1.5(8y ago)65622[1 issues](https://github.com/Hanisch-IT/kraken-api/issues)MITPHPPHP &gt;=5.5

Since Jul 20Pushed 8y ago1 watchersCompare

[ Source](https://github.com/Hanisch-IT/kraken-api)[ Packagist](https://packagist.org/packages/hanischit/kraken-api)[ RSS](/packages/hanischit-kraken-api/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (10)Dependencies (5)Versions (18)Used By (0)

Kraken-API
==========

[](#kraken-api)

[![Gitter chat](https://camo.githubusercontent.com/d756667791866fb367b63a5ffa9f130cf8465a3453bd57d796113c83e7b91fe5/68747470733a2f2f6261646765732e6769747465722e696d2f68616e697363682d69742f6b72616b656e2d6170692e706e67)](https://gitter.im/hanischit-kraken-api/Lobby)[![PHP 5.5](https://camo.githubusercontent.com/5b8b55d7e7a9c2f7fc780f70ed8297352e9ecfa4b182ba9fac23ebd2d5f2a1e5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d352e352d627269676874677265656e2e737667)](https://camo.githubusercontent.com/5b8b55d7e7a9c2f7fc780f70ed8297352e9ecfa4b182ba9fac23ebd2d5f2a1e5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d352e352d627269676874677265656e2e737667)[![PHP 5.6](https://camo.githubusercontent.com/f84a3c706b78a519726f9f04114117f20ac565bacdc40c3b347854e8b3538cca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d352e362d627269676874677265656e2e737667)](https://camo.githubusercontent.com/f84a3c706b78a519726f9f04114117f20ac565bacdc40c3b347854e8b3538cca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d352e362d627269676874677265656e2e737667)[![PHP 7](https://camo.githubusercontent.com/0a3c138c03185a88b7a193414fd3e3bf0ae3b497ea875b88c502efa7c6682d27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372d627269676874677265656e2e737667)](https://camo.githubusercontent.com/0a3c138c03185a88b7a193414fd3e3bf0ae3b497ea875b88c502efa7c6682d27/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372d627269676874677265656e2e737667)[![PHP 7.1](https://camo.githubusercontent.com/06ff90b7deea4d0f7b024955580a90da65c2368c70fe718627c1310798525391/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372e312d627269676874677265656e2e737667)](https://camo.githubusercontent.com/06ff90b7deea4d0f7b024955580a90da65c2368c70fe718627c1310798525391/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d372e312d627269676874677265656e2e737667)[![Version](https://camo.githubusercontent.com/41726e9d77ebdbaaccd2bbce766e6e188f355b9abcb441d5ffcbc04c3decc7ca/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f48616e697363682d49542f6b72616b656e2d6170692e737667)](https://packagist.org/packages/hanischit/kraken-api)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/7bb47ddfb8527c6bff33d6354a244024af8522414e1fef744d06ab9911aa7e38/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f48616e697363682d49542f6b72616b656e2d6170692f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Hanisch-IT/kraken-api/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/525e5f1f285a9621c2f68569a6373efbcee452c7b67182a459e715199f6ca643/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f48616e697363682d49542f6b72616b656e2d6170692f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Hanisch-IT/kraken-api/?branch=master)

Simple API client to work with kraken.

All calls of the api are implemented:

Installation &amp; loading
--------------------------

[](#installation--loading)

Kraken api is available on [Packagist](https://packagist.org/packages/hanischit/kraken-api) (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`.

Example
-------

[](#example)

```
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](https://github.com/Hanisch-IT/kraken-api/tree/master/example) folder for more examples.

Tests
-----

[](#tests)

There is a PHPUnit test script in the [test](https://github.com/Hanisch-IT/kraken-api/tree/master/tests) folder.

Build status: [![Build Status](https://camo.githubusercontent.com/9620f59977c47aa2c9122e187bc27b602d20270ffe4a19f31052c72cf6e55b9f/68747470733a2f2f7472617669732d63692e6f72672f48616e697363682d49542f6b72616b656e2d6170692e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Hanisch-IT/kraken-api)

Security
--------

[](#security)

Please disclose any vulnerabilities found responsibly - report any security problems found to the maintainers privately.

Contributing
------------

[](#contributing)

Please submit bug reports, suggestions and pull requests to the [GitHub issue tracker](https://github.com/Hanisch-IT/kraken-api/issues).

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity67

Established project with proven stability

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~12 days

Recently: every ~34 days

Total

16

Last Release

3082d ago

Major Versions

0.9.0 → 1.0.02017-08-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/4134bf5ad0494f5ecf2d4352c5c81c076e8aeb1ed9f9205cafc60e059ebc1e4e?d=identicon)[fabianblum](/maintainers/fabianblum)

---

Tags

apiclientcrypttradingkrakentrade

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/hanischit-kraken-api/health.svg)

```
[![Health](https://phpackages.com/badges/hanischit-kraken-api/health.svg)](https://phpackages.com/packages/hanischit-kraken-api)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k8.8M83](/packages/openai-php-laravel)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[resend/resend-php

Resend PHP library.

596.2M35](/packages/resend-resend-php)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

72287.1k1](/packages/mozex-anthropic-laravel)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
