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

ActiveLibrary[API Development](/categories/api)

vexura/qonto-php
================

Qonto PHP client

01PHP

Since Jul 2Pushed 2y agoCompare

[ Source](https://github.com/CookieMC337/qonto-php)[ Packagist](https://packagist.org/packages/vexura/qonto-php)[ RSS](/packages/vexura-qonto-php/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

*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

14

—

LowBetter than 1% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 70% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/7cf1d6d8d7218eeace3f50fe0bd639ba0774f199124f3ad250aa63d117bebc95?d=identicon)[CookieMC337](/maintainers/CookieMC337)

---

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)")[![CookieMC337](https://avatars.githubusercontent.com/u/51511368?v=4)](https://github.com/CookieMC337 "CookieMC337 (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)")

### Embed Badge

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

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k12](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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