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

ActiveLibrary[API Development](/categories/api)

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

PHP client library for Telerivet REST API

v1.8.5(3mo ago)654.7k↑20.8%15[1 issues](https://github.com/Telerivet/telerivet-php-client/issues)2MITPHPPHP &gt;=5.3.0

Since Jul 11Pushed 3mo ago3 watchersCompare

[ Source](https://github.com/Telerivet/telerivet-php-client)[ Packagist](https://packagist.org/packages/telerivet/telerivet-php-client)[ Docs](https://telerivet.com/api)[ RSS](/packages/telerivet-telerivet-php-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (9)Used By (2)

```
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 7.0 or higher (PHP 5.3-5.6 supported by an older version of this library at https://github.com/Telerivet/telerivet-php-client/releases/tag/v1.5.0)
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

52

—

FairBetter than 96% of packages

Maintenance76

Regular maintenance activity

Popularity39

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

Every ~843 days

Recently: every ~380 days

Total

6

Last Release

111d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/054a63764ee46bbf1e54778f6f0d851ddb1bbbcba008ff06e729b8176889bbf3?d=identicon)[telerivet](/maintainers/telerivet)

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

265103.1M454](/packages/google-gax)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

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