PHPackages                             tavux/qonto-php - 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. tavux/qonto-php

ActiveLibrary[API Development](/categories/api)

tavux/qonto-php
===============

Qonto PHP client

1.0.1(2y ago)61.2k4[2 issues](https://github.com/tavux/qonto-php/issues)1MITPHPPHP &gt;=5.6

Since Dec 5Pushed 2y ago2 watchersCompare

[ Source](https://github.com/tavux/qonto-php)[ Packagist](https://packagist.org/packages/tavux/qonto-php)[ RSS](/packages/tavux-qonto-php/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (5)Dependencies (1)Versions (6)Used By (1)

*qonto-php*
===========

[](#qonto-php)

What is *Qonto* ?
-----------------

[](#what-is-qonto--)

Qonto is a new bank company for freelancers &amp; companies (more infos : [qonto.eu](qonto.eu))

What is **qonto-php** ?
-----------------------

[](#what-is-qonto-php-)

*Qonto* provides an API for companies to get data from their bank account.

*qonto-php* is a client, implemented in PHP, to request this API.

*qonto-php* only supports the second version of Qonto API.

How to install it ?
-------------------

[](#how-to-install-it-)

`composer require tavux/qonto-php`

How to use it ?
---------------

[](#how-to-use-it-)

#### *Qonto* API Documentation

[](#qonto-api-documentation)

[Qonto API v2 Documentation](https://api-doc.qonto.eu/2.0/welcome/authentication)

#### *qonto-php* Documentation

[](#qonto-php-documentation)

```
    /**
     * @param string $slug
     * @param string $iban
     * @param array $status
     * @param string $updated_at_from
     * @param string $updated_at_to
     * @param string $settled_at_from
     * @param string $settled_at_to
     * @param string $sort_by
     * @param integer $current_page
     * @param integer $per_page
     * @return \Tavux\Qonto\Models\Transactions
     * @throws \GuzzleHttp\Exception\GuzzleException
     */
    public function listTransactions($slug, $iban=null, $status=null, $updated_at_from=null, $updated_at_to=null, $settled_at_from=null, $settled_at_to=null, $sort_by=null, $current_page=null, $per_page=null);

    /**
     * @param integer $current_page
     * @param integer $per_page
     * @return \Tavux\Qonto\Models\Labels
     * @throws \GuzzleHttp\Exception\GuzzleException
     */
    public function listLabels($current_page=null, $per_page=null);

    /**
     * @param integer $current_page
     * @param integer $per_page
     * @return \Tavux\Qonto\Models\Memberships
     * @throws \GuzzleHttp\Exception\GuzzleException
     */
    public function listMemberships($current_page=null, $per_page=null);

    /**
     * @param int $id
     * @return \Tavux\Qonto\Models\Attachment
     * @throws \GuzzleHttp\Exception\GuzzleException
     */
    public function getAttachment($id);

    /**
     * @param int $id
     * @return \Tavux\Qonto\Models\Organization
     * @throws \GuzzleHttp\Exception\GuzzleException
     */
    public function getOrganization($id);

    /**
     * Change credentials to connect to Qonto API
     * @see https://api-doc.qonto.eu/2.0/welcome/authentication
     *
     * @param string $login
     * @param string $secret_key
     */
    public function setCredentials($login, $secret_key);
```

#### Example

[](#example)

```
use \Tavux\Qonto\QontoClient;

$qonto = new QontoClient('login', 'secret_key');

try {
    $organization = $qonto->getOrganization('company_id');
    $transactions = $qonto->listTransactions(
        $organization->bank_accounts[0]->slug,
        $organization->bank_accounts[0]->iban,
        null,
        null,
        null,
        null,
        null,
        null,
        1,
        null
    );
    $labels = $qonto->listLabels();
    $memberships = $qonto->listMemberships();

    var_dump($organization, $transactions->transactions, $labels->labels, $memberships->memberships);
} catch (\GuzzleHttp\Exception\GuzzleException $e) {
    echo $e->getMessage();
}
```

Author
------

[](#author)

*qonto-php* has been initiated by [Tavux](https://tavux.tech).

License
-------

[](#license)

MIT Licence. Refer to the [LICENSE](https://github.com/tavux/qonto-php/blob/master/LICENSE) file to get more info.

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 77.8% 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 ~374 days

Total

5

Last Release

893d ago

Major Versions

0.9.2 → 1.0.02019-12-09

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/118226?v=4)[Tavux](/maintainers/tavux)[@tavux](https://github.com/tavux)

---

Top Contributors

[![SelimTavukcuoglu](https://avatars.githubusercontent.com/u/4791044?v=4)](https://github.com/SelimTavukcuoglu "SelimTavukcuoglu (14 commits)")[![Codeurfou](https://avatars.githubusercontent.com/u/180521939?v=4)](https://github.com/Codeurfou "Codeurfou (2 commits)")[![apio-sys](https://avatars.githubusercontent.com/u/26541964?v=4)](https://github.com/apio-sys "apio-sys (1 commits)")[![pirlgon](https://avatars.githubusercontent.com/u/2656249?v=4)](https://github.com/pirlgon "pirlgon (1 commits)")

---

Tags

qonto-apiqonto-php

### Embed Badge

![Health badge](/badges/tavux-qonto-php/health.svg)

```
[![Health](https://phpackages.com/badges/tavux-qonto-php/health.svg)](https://phpackages.com/packages/tavux-qonto-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k496.1k33](/packages/neuron-core-neuron-ai)[avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

528.3M7](/packages/avalara-avataxclient)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

232.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[aimeos/prisma

A powerful PHP package for integrating media related Large Language Models (LLMs) into your applications

1772.4k4](/packages/aimeos-prisma)

PHPackages © 2026

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