PHPackages                             survos/platform-api-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. [API Development](/categories/api)
4. /
5. survos/platform-api-php

ActiveLibrary[API Development](/categories/api)

survos/platform-api-php
=======================

Survos php api client

v1.2.2(8y ago)0310[3 issues](https://github.com/survos/platform-api-php/issues)proprietaryPHP

Since Nov 16Pushed 7y ago8 watchersCompare

[ Source](https://github.com/survos/platform-api-php)[ Packagist](https://packagist.org/packages/survos/platform-api-php)[ RSS](/packages/survos-platform-api-php/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (8)Dependencies (1)Versions (38)Used By (0)

Survos php api client
=====================

[](#survos-php-api-client)

Authenticating
--------------

[](#authenticating)

```
require __DIR__ . '/../vendor/autoload.php';

use Survos\Client\SurvosClient;

$client = new SurvosClient('https://demo.survos.com/api1.0/');
if (!$client->authorize('otest', 'tt')) {
    throw new \Exception('Wrong credentials!');
}
```

Register user
-------------

[](#register-user)

```
use Survos\Client\Resource\UserResource;

$data = [
    'username' => 'john85210101',
    'email' => 'john85210101@gmail.com',
    'name' => 'Nick',
];
$resource = new UserResource($client);;
if ($resource->register($data)) {
    //user has been created
}
```

Get item
--------

[](#get-item)

```
$item = $resource->getById($id);
```

Get paginated items
-------------------

[](#get-paginated-items)

```
$page = 1;
$maxPerPage = 10;
$criteria = ['id' => $id];
$orderBy = ['id' => 'asc'];
$response = $resource->getList($criteria, $orderBy, $page, $maxPerPage);
```

Delete item
-----------

[](#delete-item)

```
$result = $resource->deleteById($id);
```

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~165 days

Total

36

Last Release

3046d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/21b39551f92ed4143772c622f9e571589c5a72c96ab3c53fe67489ce0d83e806?d=identicon)[tacman1123](/maintainers/tacman1123)

![](https://www.gravatar.com/avatar/5707c06f8060f89df446c309a4e07087c59236091b3daea7b8d5326b8dd89ac0?d=identicon)[piogrek](/maintainers/piogrek)

---

Top Contributors

[![karser](https://avatars.githubusercontent.com/u/1675033?v=4)](https://github.com/karser "karser (26 commits)")[![piogrek](https://avatars.githubusercontent.com/u/1583042?v=4)](https://github.com/piogrek "piogrek (26 commits)")[![kcivey](https://avatars.githubusercontent.com/u/61062?v=4)](https://github.com/kcivey "kcivey (16 commits)")[![tacman](https://avatars.githubusercontent.com/u/619585?v=4)](https://github.com/tacman "tacman (6 commits)")

### Embed Badge

![Health badge](/badges/survos-platform-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/survos-platform-api-php/health.svg)](https://phpackages.com/packages/survos-platform-api-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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