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

ActiveLibrary[API Development](/categories/api)

neyric/php-qonto
================

Qonto API client for PHP

v1.0.0(6y ago)2435[1 issues](https://github.com/neyric/php-qonto/issues)MITPHPPHP ^7.1

Since Dec 13Pushed 3y ago1 watchersCompare

[ Source](https://github.com/neyric/php-qonto)[ Packagist](https://packagist.org/packages/neyric/php-qonto)[ Docs](https://github.com/neyric/php-qonto)[ RSS](/packages/neyric-php-qonto/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependencies (7)Versions (2)Used By (0)

Qonto API client for PHP [![Build Status](https://camo.githubusercontent.com/24719ccff37f2ef3f58b5408e4b3c17f221c89c47f31b32c51156c731a3578bd/68747470733a2f2f7472617669732d63692e6f72672f6572696361626f7561662f7068702d716f6e746f2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/ericabouaf/php-qonto) [![Latest Stable Version](https://camo.githubusercontent.com/9084af91eb58a4a6c1227bae650cbee8b820e612a2f1af63c1bfe977f07ec4a0/68747470733a2f2f706f7365722e707567782e6f72672f6e65797269632f7068702d716f6e746f2f762f737461626c65)](https://packagist.org/packages/neyric/php-qonto) [![Total Downloads](https://camo.githubusercontent.com/4c09c915111aaa18c1a4391646fe161b77859d360d334ec843b2491c029aa66e/68747470733a2f2f706f7365722e707567782e6f72672f6e65797269632f7068702d716f6e746f2f646f776e6c6f616473)](https://packagist.org/packages/neyric/php-qonto) [![License](https://camo.githubusercontent.com/09fa9ff4b7cfe70b97088f603d9ec4279ec35e982a5afa37efe262878b9f6ab9/68747470733a2f2f706f7365722e707567782e6f72672f6e65797269632f7068702d716f6e746f2f6c6963656e7365)](https://packagist.org/packages/neyric/php-qonto)
======================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#qonto-api-client-for-php----)

neyric/php-qonto is an unofficial PHP client library to work with [Qonto REST API v2](https://api-doc.qonto.eu/).

Requirements
------------

[](#requirements)

To use this SDK, you will need (as a minimum):

- PHP v7.1
- You do not have to use [Composer](https://getcomposer.org/), but you are strongly advised to
- A working Qonto Account

Installation with Composer
--------------------------

[](#installation-with-composer)

You can use neyric/php-qonto library as a dependency in your project with [Composer](https://getcomposer.org/) (which is the preferred technique). Follow [these installation instructions](https://getcomposer.org/doc/00-intro.md) if you do not already have Composer installed. A composer.json file is available in the repository and it has been referenced from [Packagist](https://packagist.org/packages/neyric/php-qonto).

```
you@yourhost:/path/to/your-project$ composer require neyric/php-qonto

```

License
-------

[](#license)

neyric/php-qonto is distributed under MIT license, see the [LICENSE file](https://github.com/neyric/php-qonto/blob/master/LICENSE).

Contacts
--------

[](#contacts)

Report bugs or suggest features using [issue tracker on GitHub](https://github.com/ericabouaf/php-qonto).

Configuration
-------------

[](#configuration)

When using the API, you can authenticate a Qonto account using its login and secret key in the request. You can find and manage your secret key from the Qonto web application under Settings, in the API tab.

Qonto does not provide sandbox accounts for its API yet. (The API is read-only anyway)

Sample usage
------------

[](#sample-usage)

```
require_once '/path/to/your-project/vendor/autoload.php';

$qonto = new \neyric\Qonto\QontoApi("your-qonto-login", "your-qonto-secret-key");

// Fetch the organization details (tip: the organization id is the same as the login)
$organization = $qonto->Organizations->get("your-organization-id");
var_dump($organization);

// Fetch the list of transactions
$transactionCollection = $qonto->Transactions->list('bank-account-slug', 'FR76XXXXXXXXXXXXXXXXXXXXXXX');
var_dump($transactionCollection);

// Fetch the list of transactions with filters
use neyric\Qonto\Model\TransactionFilterBuilder;

$filters = TransactionFilterBuilder::create()
            ->status("completed")
            ->side("credit")
            ->updatedAtFrom("2019-01-10T11:47:53.123Z")
            ->updatedAtTo("2021-01-10T11:47:53.123Z")
            ->attachments();

$transactionCollection = $qonto->Transactions->listFilter('bank-account-slug', 'FR76XXXXXXXXXXXXXXXXXXXXXXX', $filters);
var_dump($transactionCollection);

// Fetch memberships
$memberships = $qonto->Memberships->list();
var_dump($memberships);

// Fetch labels
$labels = $qonto->Labels->list();
var_dump($labels);

// Fetch an attachment
$attachment = $qonto->Attachments->get("some-attachement-id");
var_dump($attachment);

// Fetch the list of external transfers
$externalTransfersCollection = $qonto->ExternalTransers->list();
var_dump($externalTransfersCollection);

// Fetch the list of external transfers with filters
use neyric\Qonto\Model\ExternalTransferFilterBuilder;
use neyric\Qonto\Model\ExternalTransferStatus;

$filters = ExternalTransferFilterBuilder::create()
            ->beneficary(["0a8df251-de2a-4394-bffc-6b9d9795700d"])
            ->status(ExternalTransferStatus::PENDING)
            ->scheduledAtFrom("2022-01-10")
            ->updatedAtTo("2022-01-27T22:05:07.000Z");

$externalTransfersCollection = $qonto->ExternalTransers->listFilter($filters);
var_dump($externalTransfersCollection);

// Create an external transfer
use neyric\Qonto\Model\ExternalTransferBuilder;

$builder = ExternalTransferBuilder::create()
            ->beneficaryId("0a8df251-de2a-4394-bffc-6b9d9795700d")
            ->debitIban("FR7630001007941234567890185")
            ->currency("EUR")
            ->note("External transfer for John")
            ->reference("External transfer reference (ex: John Car)")
            ->amount(18000.56)
            ->scheduledDate("2022-02-10");

$qonto->ExternalTransers->create($builder);
```

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

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

Unknown

Total

1

Last Release

2346d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4b07b937c4c01181b6dbe7e5ac025637f0a2cc639d26a6cd6efe40260f7c20bb?d=identicon)[neyric](/maintainers/neyric)

---

Top Contributors

[![ericabouaf](https://avatars.githubusercontent.com/u/39354?v=4)](https://github.com/ericabouaf "ericabouaf (9 commits)")[![INFO803TEST](https://avatars.githubusercontent.com/u/103334840?v=4)](https://github.com/INFO803TEST "INFO803TEST (1 commits)")

---

Tags

qonto

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[craftcms/cms

Craft CMS

3.6k3.6M2.6k](/packages/craftcms-cms)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

50570.7k1](/packages/web-auth-webauthn-framework)[symfony/ai-agent

PHP library for building agentic applications.

30536.7k44](/packages/symfony-ai-agent)[api-platform/symfony

Symfony API Platform integration

323.2M67](/packages/api-platform-symfony)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)

PHPackages © 2026

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