PHPackages                             madnesscode/voluum - 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. madnesscode/voluum

ActiveLibrary[API Development](/categories/api)

madnesscode/voluum
==================

Voluum SDK for PHP

1.2(8y ago)440.3k↑83.3%3MITPHP

Since Jul 21Pushed 5y ago2 watchersCompare

[ Source](https://github.com/MadnessCODE/Voluum)[ Packagist](https://packagist.org/packages/madnesscode/voluum)[ RSS](/packages/madnesscode-voluum/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Voluum SDK For PHP
==================

[](#voluum-sdk-for-php)

[![Build Status](https://camo.githubusercontent.com/04e3c3ac765ae275732d17bd65a4bdade71a64926e69474168be50e7f135a0e4/68747470733a2f2f7472617669732d63692e6f72672f4d61646e657373434f44452f566f6c75756d2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/MadnessCODE/Voluum)[![Latest Stable Version](https://camo.githubusercontent.com/1fd8ab4f351b9ac7f1b4e22d62d2fb8f231e624c6fc0997f1f8bab3b17457d34/68747470733a2f2f706f7365722e707567782e6f72672f6d61646e657373636f64652f766f6c75756d2f762f737461626c65)](https://packagist.org/packages/madnesscode/voluum)[![Total Downloads](https://camo.githubusercontent.com/d32d943d478aa90fc4ff745b3d8f7ed5a2fc7feea5488e535ff2a5802c2740da/68747470733a2f2f706f7365722e707567782e6f72672f6d61646e657373636f64652f766f6c75756d2f646f776e6c6f616473)](https://packagist.org/packages/madnesscode/voluum)[![License](https://camo.githubusercontent.com/26e2d4f7ea338e084d3a2431713def891a93b806bf7554a2e89f9e99b226b7cf/68747470733a2f2f706f7365722e707567782e6f72672f6d61646e657373636f64652f766f6c75756d2f6c6963656e7365)](https://packagist.org/packages/madnesscode/voluum)

This repository contains the open source PHP SDK that allows you to access the Voluum REST API

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

[](#installation)

The Voluum PHP SDK can be installed with [Composer](https://getcomposer.org/). Run this command:

```
composer require madnesscode/voluum
```

Usage
-----

[](#usage)

> **Note:** This version of the Voluum SDK for PHP requires PHP 5.6 or greater.

Example

```
use MadnessCODE\Voluum;
```

Use voluum account email and password for credentials:

```
$email = 'test@example.com';
$password = 'test';

$client = new Voluum\Client\API(new Voluum\Auth\PasswordCredentials($email, $password));

$report_api = new Voluum\API($client);
```

Or use access id and key:

```
$access_key_id = "access_key_id";
$access_key = "access_key";

$client = new Voluum\Client\API(new Voluum\Auth\AccessKeyCredentials($access_key_id, $access_key));

$report_api = new Voluum\API($client);
```

How to get report:

```
$result = $report_api->get("report", [
   "from" => date("Y-m-d"),
   "to" => date("Y-m-d"),
   "groupBy" => "campaign"
]);

//Get result as json
echo $result->getJson();

//Get result as object
var_dump($result->getData());
```

Create new lander:

```
$result = $report_api->post("lander", [
   "namePostfix" => "Test",
   "url" => "http://example.com"
]);
```

Edit lander:

```
$result = $report_api->put("lander/xxxxx-xxxxxx-xxxxxx-xxxxx", [
   "namePostfix" => "Test 1",
   "url" => "http://example.com"
]);
```

Delete lander:

```
$result = $report_api->delete("lander", [
   "ids" => "xxxxx-xxxxxx-xxxxxx-xxxxxx"
]);
```

Upload conversion:

```
$result = $report_api->csv("conversion",
    "POST",
    "c384EFV6JHQODRN70575OK6,1.2,abc123,app_install");
```

Complete documentation is available [here](https://developers.voluum.com/).

License
-------

[](#license)

Please see the [license file](https://github.com/MadnessCODE/Voluum/blob/master/LICENSE) for more information.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity34

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity64

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

Total

2

Last Release

3161d ago

### Community

Maintainers

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

---

Top Contributors

[![MadnessCODE](https://avatars.githubusercontent.com/u/5583360?v=4)](https://github.com/MadnessCODE "MadnessCODE (14 commits)")

---

Tags

sdkvoluum

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/madnesscode-voluum/health.svg)

```
[![Health](https://phpackages.com/badges/madnesscode-voluum/health.svg)](https://phpackages.com/packages/madnesscode-voluum)
```

###  Alternatives

[appwilio/cdek-sdk

CDEK API SDK (cdek.ru)

406.5k](/packages/appwilio-cdek-sdk)[mocking-magician/coinbase-pro-sdk

Library for coinbase pro API calls

223.2k](/packages/mocking-magician-coinbase-pro-sdk)

PHPackages © 2026

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