PHPackages                             telerivet-psr/telerivet-php-client - 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. telerivet-psr/telerivet-php-client

ActiveLibrary[API Development](/categories/api)

telerivet-psr/telerivet-php-client
==================================

PHP client library for Telerivet REST API

v1.1.0(11y ago)048MITPHPPHP &gt;=5.3.0

Since Jul 11Pushed 9y ago1 watchersCompare

[ Source](https://github.com/herzcthu/telerivet-php-client)[ Packagist](https://packagist.org/packages/telerivet-psr/telerivet-php-client)[ Docs](https://telerivet.com/api)[ RSS](/packages/telerivet-psr-telerivet-php-client/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

```
PHP client library for Telerivet REST API

https://telerivet.com/api

Overview:
---------
This library makes it easy to integrate your web application with Telerivet.
You can use it to:

- send SMS messages via an Android phone or SMS gateway service
- update contact information in Telerivet (e.g. from a signup form on your own website)
- add or remove contacts from groups
- export your message/contact data from Telerivet into your own systems
- schedule messages to be sent at a later time
- control automated services
- much more

All API methods are fully documented at https://telerivet.com/api/rest/php ,
as well as in the comments of the PHP source files. To learn what functionality is available,
start with telerivet.php, lib/project.php, and lib/apicursor.php .

System Requirements:
--------------------
PHP 5.3 or higher
PHP json extension (usually enabled in PHP by default)
PHP curl extension (usually enabled in PHP by default)

Installation:
-------------
Copy this directory into your web application,
and require telerivet.php in your PHP code, e.g.:

require_once "path/to/telerivet.php";

Alternatively, if you use Composer for dependency management,
you can add the following to your composer.json:

"require": {
    "telerivet/telerivet-php-client": "dev-master"
}

Example Usage:
--------------

require_once "path/to/telerivet.php";

$API_KEY = 'YOUR_API_KEY';           // from https://telerivet.com/api/keys
$PROJECT_ID = 'YOUR_PROJECT_ID';

$telerivet = new Telerivet_API($API_KEY);

$project = $telerivet->initProjectById($PROJECT_ID);

// Send a SMS message
$project->sendMessage(array(
    'to_number' => '555-0001',
    'content' => 'Hello world!'
));

// Query contacts
$name_prefix = 'John';
$cursor = $project->queryContacts(array(
    'name[prefix]' => $name_prefix,
    'sort' => 'name',
))->limit(20);

echo "{$cursor->count()} contacts matching $name_prefix:\n";

while ($cursor->hasNext())
{
    $contact = $cursor->next();
    echo "{$contact->name} {$contact->phone_number} {$contact->vars->birthdate}\n";
}

// Import a contact
$contact = $project->getOrCreateContact(array(
    'name' => 'John Smith',
    'phone_number' => '555-0001',
    'vars' => array(
        'birthdate' => '1981-03-04',
        'network' => 'Vodacom'
    )
));

// Add a contact to a group
$group = $project->getOrCreateGroup('Subscribers');
$contact->addToGroup($group);
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

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

4373d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f1c0116244be7efbb2e1c3bc9bf442ccf0560ac2c48088ef46f29cda4a052a65?d=identicon)[herzcthu](/maintainers/herzcthu)

---

Top Contributors

[![youngj](https://avatars.githubusercontent.com/u/343100?v=4)](https://github.com/youngj "youngj (34 commits)")[![herzcthu](https://avatars.githubusercontent.com/u/3231665?v=4)](https://github.com/herzcthu "herzcthu (5 commits)")

### Embed Badge

![Health badge](/badges/telerivet-psr-telerivet-php-client/health.svg)

```
[![Health](https://phpackages.com/badges/telerivet-psr-telerivet-php-client/health.svg)](https://phpackages.com/packages/telerivet-psr-telerivet-php-client)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

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

PHPackages © 2026

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