PHPackages                             zedwoo/online-marketing-api-toolkit - 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. zedwoo/online-marketing-api-toolkit

ActiveLibrary[API Development](/categories/api)

zedwoo/online-marketing-api-toolkit
===================================

Toolkit for requesting online marketing apis

v1.1.2(11y ago)7631[2 issues](https://github.com/zedwoo/online-marketing-api-toolkit/issues)MITPHPPHP &gt;=5.3.3

Since Dec 8Pushed 11y ago2 watchersCompare

[ Source](https://github.com/zedwoo/online-marketing-api-toolkit)[ Packagist](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit)[ Docs](https://github.com/zedwoo/online-marketing-api-toolkit)[ RSS](/packages/zedwoo-online-marketing-api-toolkit/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (7)Dependencies (3)Versions (9)Used By (0)

[![Latest Stable Version](https://camo.githubusercontent.com/97185f02ad252687668df2f1bf1c3aec885b0a8baa2dd63a55092bd1c23fd341/68747470733a2f2f706f7365722e707567782e6f72672f7a6564776f6f2f6f6e6c696e652d6d61726b6574696e672d6170692d746f6f6c6b69742f762f737461626c652e706e67)](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit) [![Total Downloads](https://camo.githubusercontent.com/79d412b38fac191591bbbdcf049edc60678352f9a5f1086c80326d7ffbb48695/68747470733a2f2f706f7365722e707567782e6f72672f7a6564776f6f2f6f6e6c696e652d6d61726b6574696e672d6170692d746f6f6c6b69742f646f776e6c6f6164732e706e67)](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit) [![Latest Unstable Version](https://camo.githubusercontent.com/33b76e75cf9f1ef27bc2073def024bec0b40ef789d19eafa2ddc9a4cd146de31/68747470733a2f2f706f7365722e707567782e6f72672f7a6564776f6f2f6f6e6c696e652d6d61726b6574696e672d6170692d746f6f6c6b69742f762f756e737461626c652e706e67)](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit) [![License](https://camo.githubusercontent.com/dd6f4a0a50f161add544543229ee876d25f4520a95de404c46adf92c1dc94820/68747470733a2f2f706f7365722e707567782e6f72672f7a6564776f6f2f6f6e6c696e652d6d61726b6574696e672d6170692d746f6f6c6b69742f6c6963656e73652e706e67)](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit)\#Online-Marketing-Api-Toolkit

\##Was? Diese Libary bietet eine schnelle Möglichkeit, verschiedene APIs aus dem Online-Marketing-Bereich abzufragen.

\##Warum? Viele Rest-APIs haben keinen Client und bieten nur beispielhaften Code. Diese Library nutzt die [Guzzle HTTP Client Library](https://github.com/guzzle/guzzle). Dadurch hat man für alle APIs die tollen Möglichkeiten von Guzzle:

- immer gleiches Exceptionhandling
- tolle Module (Bsp.: Backoff-Plugin)
- etc.

\##Welche? Aktuell sind folgende APIs in dieser Library implementiert:

- [Sistrix](/src/Zedwoo/OnlineMarketingApiToolkit/Sistrix/SISTRIX-README.md)
- [Moz](/src/Zedwoo/OnlineMarketingApiToolkit/Moz/MOZ-README.md)
- [OmData](/src/Zedwoo/OnlineMarketingApiToolkit/OmData/OMDATA-README.md)
- [Semrush](/src/Zedwoo/OnlineMarketingApiToolkit/Semrush/SEMRUSH-README.md)
- [SEOkicks](/src/Zedwoo/OnlineMarketingApiToolkit/Seokicks/SEOKICKS-README.md)
- [Strucr](/src/Zedwoo/OnlineMarketingApiToolkit/Strucr/Strucr-README.md)

\##Installation Das Online-Marketing-Api-Toolkit ist über Packagist ([zedwoo/online-marketing-api-toolkit](https://packagist.org/packages/zedwoo/online-marketing-api-toolkit)) erhältlich und damit über [Composer](http://getcomposer.org/) installierbar.

\###Composer installieren (bei Bedarf) Wenn Composer bisher nicht benutzt wurde und nicht installiert wurde, dann einfach installieren:

```
 curl -sS https://getcomposer.org/installer | php

```

Weitere Möglichkeiten der Installation sind hier beschrieben:

Wenn Composer nicht benutzt werden soll, dann den Code einfach von Github downloaden und mit einem PSR-0 kompatiblen Autoaloader laden.

\###Neues Projekt erstellen Du kannst dir ein neues Projekt anlegen, in dem du folgende Zeile ausführst:

```
php composer.phar create-project zedwoo/online-marketing-api-toolkit projekt_name

```

Dabei einfach "projekt\_name" durch einen eigenen Namen ersetzen.

Oder einfacher: ###Composer Beispiel für bestehendes Projekt OnlineMarketingApiToolkit in composer.json hinzufügen bzw. Datei erstellen:

```
{
    "require": {
        "zedwoo/online-marketing-api-toolkit": "1.*"
    }
}
```

Und dann folgendes Zeile ausführen:

```
php composer.phar install

```

\##Nutzung Die Nutzung der unterschiedlichen Clients ist immer ähnlich. Beispiel Sistrix:

```
require_once('vendor/autoload.php'); // Autoloaderaufruf von Composer
use Zedwoo\OnlineMarketingApiToolkit\Sistrix\SistrixClient;
$client = SistrixClient::factory(array(
									 'api_key' => 'SISTRIX_API-Key'
								));
$command = $client->getCommand('credits');
$result = $command->execute(); // returns an array with the result
```

Für jede APi gibt es eine kurze Doku und eine Datei im Json-Schema. Siehe die Links unter "Welche?".

\##Contributing

```
Fork it
Create your feature branch (git checkout -b my-new-feature)
Commit your changes (git commit -am 'Add some feature')
Push to the branch (git push origin my-new-feature)
Create new Pull Request

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance14

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

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

Recently: every ~51 days

Total

7

Last Release

4284d ago

Major Versions

v0.0.1 → v1.0.0-beta2014-01-24

### Community

Maintainers

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

---

Top Contributors

[![Michaelcgn](https://avatars.githubusercontent.com/u/1945153?v=4)](https://github.com/Michaelcgn "Michaelcgn (53 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/zedwoo-online-marketing-api-toolkit/health.svg)

```
[![Health](https://phpackages.com/badges/zedwoo-online-marketing-api-toolkit/health.svg)](https://phpackages.com/packages/zedwoo-online-marketing-api-toolkit)
```

###  Alternatives

[rackspace/php-opencloud

PHP SDK for Rackspace/OpenStack APIs

4495.9M38](/packages/rackspace-php-opencloud)[cdaguerre/php-trello-api

Trello API v2 client

255666.7k3](/packages/cdaguerre-php-trello-api)[dchesterton/marketo-rest-api

A PHP client for the Marketo.com REST API

41844.1k1](/packages/dchesterton-marketo-rest-api)[carlosio/geckoboard

A PHP library for dealing with Geckoboard API (http://www.geckoboard.com)

40172.2k](/packages/carlosio-geckoboard)[teepluss/api

Laravel 4 Internal Request (HMVC)

7034.0k](/packages/teepluss-api)[jlinn/mandrill-api-php

A PHP client library for Mandrill's REST API

24117.4k](/packages/jlinn-mandrill-api-php)

PHPackages © 2026

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