PHPackages                             moveodev/moveo-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. moveodev/moveo-aircall-php

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

moveodev/moveo-aircall-php
==========================

Aircall API client built on top of Guzzle 7

0.1(3y ago)0131Apache-2.0PHPPHP &gt;= 7.1

Since Jun 13Pushed 3y ago1 watchersCompare

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

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

This is a non-official Aircall PHP library which provides access to the Aircall API from applications written in the PHP language.

Api references:

API version
-----------

[](#api-version)

Last update: 1.11.2

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

[](#installation)

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

```
composer require antoinelemaire/aircall-php

```

Usage
-----

[](#usage)

### Clients

[](#clients)

```
use Aircall\AircallClient;

$client = new AircallClient(appId, apiKey);

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

### Company

[](#company)

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

### Users

[](#users)

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

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

### Calls

[](#calls)

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

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

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

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

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

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

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

### Contacts

[](#contacts)

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

// Get a contact by ID
$client->contacts->get(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->search([
    '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);
```

### Tags

[](#tags)

TODO

### Webhooks

[](#webhooks)

TODO

### Teams

[](#teams)

TODO

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity32

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

1435d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2398e31e20afce1196617ccfa179bb0b22b4caeb63d15b5e6ddb9be2e35869be?d=identicon)[moveodev](/maintainers/moveodev)

---

Top Contributors

[![bjonesmroots](https://avatars.githubusercontent.com/u/39705094?v=4)](https://github.com/bjonesmroots "bjonesmroots (2 commits)")

---

Tags

apiGuzzleaircallaircall.io

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/moveodev-moveo-aircall-php/health.svg)](https://phpackages.com/packages/moveodev-moveo-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)
