PHPackages                             verified/verified-sdk-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. verified/verified-sdk-php

ActiveLibrary[API Development](/categories/api)

verified/verified-sdk-php
=========================

Verified API PHP SDK

0342PHP

Since Feb 22Pushed 10y ago2 watchersCompare

[ Source](https://github.com/verified/verified-sdk-php)[ Packagist](https://packagist.org/packages/verified/verified-sdk-php)[ RSS](/packages/verified-verified-sdk-php/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

**Please note:** This repository has been deprecated in favour of [wcealliance/php-sdk](https://github.com/wcealliance/php-sdk)

---

Verified API SDK for PHP
========================

[](#verified-api-sdk-for-php)

[![Build Status](https://camo.githubusercontent.com/d140bbe1f102426132ff3fcba2236181059b60d213a16e4989e6674130027d9b/68747470733a2f2f7472617669732d63692e6f72672f76657269666965642f76657269666965642d73646b2d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/verified/verified-sdk-php)

Communicate with the Verified REST API using PHP

### Install with Composer

[](#install-with-composer)

If you're using [Composer](https://github.com/composer/composer) to manage dependencies, you can add the Verified SDK with it.

```
{
  "require" : {
    "verified/verified-sdk-php": "dev-master"
  },
  "minimum-stability": "dev"
}
```

### Install source from GitHub

[](#install-source-from-github)

The Verified SDK requires [Unirest](https://github.com/Mashape/unirest-php) as a dependency. It also requires PHP `v5.3+` and `cURL` extensions for PHP. Download the PHP library from Github, and require in your script like so:

To install the source code:

```
$ git clone git@github.com:verified/verified-sdk-php.git
```

And include it in your scripts:

```
// first include Unirest
require_once '/path/to/unirest-php/lib/Unirest.php';
// then include this
require_once '/path/to/verified-sdk-php/lib/Verified.php';
```

\##Usage The main requirements for running this SDK are `api_key` and `api_secret`. Please make sure you have them before you proceed any further.

The class can be configured in multiple ways, by sending in a configuration array during class instantiation:

```
// create a new instance
$config_array = array(
  "api_endpoint"   => "http://verifiedapi.org",
  "api_key"        => 'YOUR_API_KEY',
  "api_secret"     => 'YOUR_API_SECRET',
  "api_version"    => '1'
);
$verified = new Verified($config_array);
```

Or by using a more OOP approach:

```
$verified = new Verified();
$verified->setKey('YOUR_API_KEY')
  ->setSecret('YOUR_API_SECRET')
  ->setConfig('api_version', '1');
```

Configuration parameters other than `api_key` and `api_secret` have setter and getter methods:

```
// set a config param
$verified->setConfig('api_version', '1');
// get a config param
$version = $verified->getConfig('api_version');
```

**Please Note:** By default, the `api_endpoint` parameter is set to the live URL, to use sandbox mode, please use the sandbox url `http://sandbox.verifiedapi.org`.

### Making REST calls to API resources

[](#making-rest-calls-to-api-resources)

Please see the [Verified API docs](http://docs.verifiedapi.org/) for a list of available API resource endpoints. The class uses `__call()` magic method to work out which resource you are calling.

For example:

```
// make a GET request to /user/user@email.com
$user = $verified->getUser('user@email.com');
// make a POST request to /user
$user = $verified->addUser(array('post_params'));
// make a PUT request to /user/user@email.com
$verified->editUser('user@email.com', array('post_params'));
// make a DELETE request to /user/user@email.com
$verified->deleteUser('user@email.com');
```

Calling sub-resources follow a similar `camelCased` pattern, for example:

```
// make a GET request to /user/user@email.com/trainingProfile/
$training_profile = $verified->getUserTrainingProfile('user@email.com');
```

In simple terms:

- `getXXX()` maps to `GET` requests
- `addXXX()` maps to `POST` requests
- `editXXX()` maps to `PUT` requests
- `deleteXXX()` maps to `DELETE` requests

### Output data &amp; Error handling

[](#output-data--error-handling)

All data from the SDK are in plain PHP arrays. If a method call fails, the output is `false`.

If you encounter the result of a query returning `false`, the error that occured can be obtained from the `getError()` method.

A very simple error resilient code snippet follows:

```
$user = $verified->getUser('user@email.com');
if ($user == false) {
  $error = $verified->getError();
  if($error){
    throw new Exception($error['errorCode'] . $error['userMessage']);
  }
} else {
  //loop through the returned data
  //and do something with it
}
```

When calling `PUT` and `POST` endpoints (`addXXXX()` and `editXXXX()`), if the payload contains invalid data, data validation messages appear in the form of an array inside the error object:

```
array(
  'errorCode'   => '400',
  'userMessage' => 'Bad Request',
  'devMessage'  => array(
      'email'   => 'Invalid email address'
  )
)
```

#### Response Metadata

[](#response-metadata)

In addition to the special getter `getError()`, there is also another getter method for metadata. `getMetadata()` returns an array containing all the metadata that was sent with the response.

Metadata usually contains the response status, offset/limit values and the total number of records returned. It also contains HATEOAS links which can be leveraged for paginating long lists.

To obtain HATEOAS links only, another special getter `getLinks()` can be used. It returns just the HATEOAS links from a response.

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

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

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2069842?v=4)[verified](/maintainers/verified)[@verified](https://github.com/verified)

---

Top Contributors

[![ekhaled](https://avatars.githubusercontent.com/u/198751?v=4)](https://github.com/ekhaled "ekhaled (80 commits)")[![verified](https://avatars.githubusercontent.com/u/2069842?v=4)](https://github.com/verified "verified (1 commits)")

### Embed Badge

![Health badge](/badges/verified-verified-sdk-php/health.svg)

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24016.2M18](/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

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

PHPackages © 2026

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