PHPackages                             idimensionz/aircall-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. [HTTP &amp; Networking](/categories/http)
4. /
5. idimensionz/aircall-php

ActiveLibrary[HTTP &amp; Networking](/categories/http)

idimensionz/aircall-php
=======================

Aircall API client built on top of Guzzle 6

2.0.0(2y ago)055.3k↓42.9%Apache-2.0PHPPHP &gt;= 5.6

Since Jan 25Pushed 2y agoCompare

[ Source](https://github.com/idimensionz/aircall-php)[ Packagist](https://packagist.org/packages/idimensionz/aircall-php)[ RSS](/packages/idimensionz-aircall-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (5)Used By (0)

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

[](#installation)

Requires PHP 5.6.

Using Composer:

The recommended way to install aircall-php is through [Composer](https://getcomposer.org):

First, install Composer:

```
$ curl -sS https://getcomposer.org/installer | php

```

Next, install the latest aircall-php:

```
$ php composer.phar require antoinelemaire/aircall-php

```

Finally, you can include the files in your PHP script:

```
require "vendor/autoload.php";
```

Clients
-------

[](#clients)

```
use Aircall\AircallClient;

$client = new AircallClient(appId, apiKey);

// Test purpose
$client->ping();
```

Company
-------

[](#company)

```
// Get generic data about the account
$client->company->getCompany();
```

Users
-----

[](#users)

```
// Get a user by ID
$client->users->getUser('155468');

// List all users
$client->users->getUsers();
```

Calls
-----

[](#calls)

```
// Get a call by ID
$client->calls->getCall('155468');

// List all calls
$client->calls->getCalls();

// Search calls
$client->calls->searchCalls([
  'tags' => 'myTag',
]);

// Display a link in-app to the User who answered a specific Call.
$client->calls->linkCall('155468', [
    'link' => 'http://something.io/mypage'
]);

// Transfer the Call to another user.
$client->calls->transfertCall('1644658', [
    'user_id' => '8945487'
]);

// Delete the recording of a specific Call.
$client->calls->deleteRecordingCall('795312');

// Delete the voicemail of a specific Call.
$client->calls->deleteVoicemailCall('13877988');
```

Contacts
--------

[](#contacts)

```
// List all contacts
$client->contacts->getContacts();

// Get a contact by ID
$client->contacts->getContact('699421');

// Create a contact
$client->contacts->create([
    'first_name'    => 'John',
    'last_name'     => 'Doe',
    'information'   => 'TEST',
    'phone_numbers' => [
        [
            'label' => 'Work',
            'value' => '+33631000000',
        ],
    ],
    'emails' => [
        [
            'label' => 'Work',
            'value' => 'john.doe@something.io',
        ],
    ],
]);

// Search contacts
$client->contacts->searchContacts([
    'phone_number' => '+33631000000',
    'email' => 'john.doe@something.io'
]);

// Update data for a specific Contact
$client->contacts->update('165451', [
  'first_name'    => 'John',
  'last_name'     => 'Doe',
  'information'   => 'TEST',
  'phone_numbers' => [
      [
          'label' => 'Work',
          'value' => '+33631000000',
      ],
  ],
  'emails' => [
      [
          'label' => 'Work',
          'value' => 'john.doe@something.io',
      ],
  ],
]);

// Delete a specific Contact
$client->contacts->delete('325459');
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 60% 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 ~807 days

Total

4

Last Release

978d ago

Major Versions

v1.0.1 → 2.0.02023-09-13

### Community

Maintainers

![](https://www.gravatar.com/avatar/75031cc08726160448843e9ecf682ee70f21e1232ffa9f7c06a56e02b5a74d0e?d=identicon)[idimensionz](/maintainers/idimensionz)

---

Top Contributors

[![AntoineLemaire](https://avatars.githubusercontent.com/u/2025537?v=4)](https://github.com/AntoineLemaire "AntoineLemaire (3 commits)")[![idimensionz](https://avatars.githubusercontent.com/u/1318604?v=4)](https://github.com/idimensionz "idimensionz (1 commits)")[![jhonnykhadra](https://avatars.githubusercontent.com/u/7204771?v=4)](https://github.com/jhonnykhadra "jhonnykhadra (1 commits)")

---

Tags

apiGuzzleaircallaircall.io

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/idimensionz-aircall-php/health.svg)

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

###  Alternatives

[antoinelemaire/aircall-php

Aircall API client built on top of Guzzle 6

1049.6k](/packages/antoinelemaire-aircall-php)[e-moe/guzzle6-bundle

Integrates Guzzle 6 into your Symfony application

11259.2k](/packages/e-moe-guzzle6-bundle)

PHPackages © 2026

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