PHPackages                             k0nias/fakturoid-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. k0nias/fakturoid-api

ActiveLibrary[API Development](/categories/api)

k0nias/fakturoid-api
====================

Unoffical Fakturoid.cz PHP API wrapper

0.1.1(7y ago)3828[1 issues](https://github.com/K0nias/fakturoid-api/issues)MITPHPPHP ^7.1

Since Jan 4Pushed 7y ago1 watchersCompare

[ Source](https://github.com/K0nias/fakturoid-api)[ Packagist](https://packagist.org/packages/k0nias/fakturoid-api)[ RSS](/packages/k0nias-fakturoid-api/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (8)Versions (3)Used By (0)

Fakturoid API
-------------

[](#fakturoid-api)

Unofficial Fakturoid.cz API PHP wrapper. Official [library](https://github.com/fakturoid/fakturoid-php) and [API documentation](http://docs.fakturoid.apiary.io/)

Reasons to write another API wrapper
------------------------------------

[](#reasons-to-write-another-api-wrapper)

1. more strict data binding
2. PHP7 support
3. better test coverage

Installation
------------

[](#installation)

The recommended way to install this library is through [Composer](http://getcomposer.org):

```
composer require k0nias/fakturoid-api:dev-master

```

Usage
-----

[](#usage)

```
    use K0nias\FakturoidApi\Api;
    use K0nias\FakturoidApi\Http\Request\GetInvoicesRequest;
    use K0nias\FakturoidApi\Model\Invoice\Filter\Parameters;
    use K0nias\FakturoidApi\Model\Invoice\Status;

    require_once __DIR__.'/vendor/autoload.php';

    $slug = 'test';
    $email = 'test@test.cz';
    $apiToken = 'xxx';

    $api = new Api($slug, $email, $apiToken);

    $filterParameters = new Parameters();
    $filterParameters->status(Status::open())
                    ->page(2);

    // generic version of getting response for request
    // @var \K0nias\FakturoidApi\Http\Response\ResponseInterface $response
    $response = $api->process(new GetInvoicesRequest($filterParameters));

    // more specific version of getting response for request
    // @var \K0nias\FakturoidApi\Http\Response\GetInvoicesResponse $response
    $response = (new GetInvoicesRequest($filterParameters))->send($api);
```

Tests
-----

[](#tests)

To run the test suite, you need [Composer](http://getcomposer.org):

```
composer install
composer test

```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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 ~90 days

Total

2

Last Release

2594d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c1acd8b93265949fb9c825ce11fd50850c780321ba78c0405065a638dc1e77b5?d=identicon)[K0nias](/maintainers/K0nias)

---

Top Contributors

[![K0nias](https://avatars.githubusercontent.com/u/1747206?v=4)](https://github.com/K0nias "K0nias (116 commits)")

---

Tags

apifakturoidphp-sdkunofficialapifakturoid

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/k0nias-fakturoid-api/health.svg)

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

###  Alternatives

[fakturoid/fakturoid-php

Fakturoid PHP library

36374.6k4](/packages/fakturoid-fakturoid-php)[m165437/laravel-blueprint-docs

API Blueprint Renderer for Laravel

22779.0k](/packages/m165437-laravel-blueprint-docs)

PHPackages © 2026

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