PHPackages                             cecula/sync-api-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. cecula/sync-api-client

ActiveLibrary[API Development](/categories/api)

cecula/sync-api-client
======================

A basic library for consuming the Cecula Sync API

v1.0.3(4y ago)0581MITHTMLPHP ^8.0.0

Since Oct 5Pushed 4y ago2 watchersCompare

[ Source](https://github.com/godwinnoah/cecula-sync-api-client)[ Packagist](https://packagist.org/packages/cecula/sync-api-client)[ RSS](/packages/cecula-sync-api-client/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (5)Used By (1)

Introduction
============

[](#introduction)

Cecula Sync API Client is a simple library that powers your app to manage your hosted sim account. You can access all endpoint features simply by invoking the appropriate methods for making calls, sending sms, etc.

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

[](#installation)

I'll take it for granted that you're already using composer. To install Cecula Sync API Client to your project simply run the command below in your terminal.

```
composer require cecula/sync-api-client

```

#### Get your API Key

[](#get-your-api-key)

- Login to the [Cecula Sync Platform](https://cecula.com/sync/pf)
- Navigate to **Account &gt; Settings** Select the **API Key** tab, generate new key if you do not already have one
- Copy the key

#### Create your Config File

[](#create-your-config-file)

- Run the following command on your terminal. Change /path/to/project to your project directory

```
cd /path/to/project
cp vendor/cecula/sync-api-client/.ceculasync.json.example .ceculasync.json

```

- Open .ceculasync.json file and paste your API Key in the appropriate field.

And that's all! Let's jump right into action with a quick start.

Quick Start
-----------

[](#quick-start)

Since we are working with composer, I am trusting somewhere in your project you have already autoloaded classes. Cecula Sync API Client will autoload if you have done something like this at least in your entry script.

```
require_once __DIR__."/vendor/autoload.php";

```

\*\*\* If you are using a framework, that would have already been done for you.

#### Calls

[](#calls)

```
use CeculaSyncApiClient\SyncCall;

$testMobile = ""; // Enter your mobile number here

$syncCall = new SyncCall();

echo "Send Missed Call: ".PHP_EOL;
var_dump($syncCall->dial($testMobile));

echo "Call Status: ".PHP_EOL;
var_dump($syncCall->getCallStatus("2020012676"));

echo "Call Auto-Response Message: ".PHP_EOL;
var_dump($syncCall->saveCallAutoResponseText(""));

echo "New Missed Calls: ".PHP_EOL;
var_dump($syncCall->getNewMissedCalls());

```

#### SMS

[](#sms)

```
use CeculaSyncApiClient\SyncSms;

$syncSms = new SyncSms();

echo "Send SMS: ".PHP_EOL;
var_dump($syncSms->sendSMS("Hello Sync", [$testMobile]));

echo "Sent SMS Status: ".PHP_EOL;
var_dump($syncSms->getSentMessageStatus("36545"));

echo "Get Unread SMS: ".PHP_EOL;
var_dump($syncSms->getUnreadSMS());

echo "Save Auto-Response SMS: ".PHP_EOL;
var_dump($syncSms->setSMSAutoResponseText("Thank you. I'll revert ASAP"));

```

#### Account Management

[](#account-management)

```
use CeculaSyncApiClient\SyncAccount;

$syncAccount = new SyncAccount();

echo "Get Cecula Balance: ".PHP_EOL;
var_dump($syncAccount->getCeculaBalance());

echo "Get Subscription Status: ".PHP_EOL;
var_dump($syncAccount->getSubscriptionStatus());

echo "Get SIM Status: ".PHP_EOL;
var_dump($syncAccount->getSimStatus());

echo "Refresh SIM: ".PHP_EOL;
var_dump($syncAccount->refreshSIM());

```

For more details, kindly refer to the [Cecula Sync API Reference](https://api-reference.cecula.com).

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 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 ~2 days

Total

4

Last Release

1725d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/32046404388def9a9a99677a67ff43a5bcf77756efe367db4583bc705a648196?d=identicon)[vereafy](/maintainers/vereafy)

---

Top Contributors

[![bbnplace](https://avatars.githubusercontent.com/u/3621257?v=4)](https://github.com/bbnplace "bbnplace (7 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cecula-sync-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/cecula-sync-api-client/health.svg)](https://phpackages.com/packages/cecula-sync-api-client)
```

###  Alternatives

[razorpay/razorpay

Razorpay PHP Client Library

2045.4M60](/packages/razorpay-razorpay)[pubnub/pubnub

This is the official PubNub PHP SDK repository.

1335.4M17](/packages/pubnub-pubnub)[culqi/culqi-php

Cliente Culqi API para PHP

41370.5k1](/packages/culqi-culqi-php)[ahmadawais/sendy-php-api

Sendy PHP API Wrapper: Complete API interfacing.

8580.6k](/packages/ahmadawais-sendy-php-api)[epayco/epayco-php

Epayco API client for PHP

25201.7k3](/packages/epayco-epayco-php)[yunchuang/appstore-connect-api

sdk for appstore connect api

3865.4k](/packages/yunchuang-appstore-connect-api)

PHPackages © 2026

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