PHPackages                             zoondo/allegro-api - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. zoondo/allegro-api

Abandoned → [asocial-media/allegro-api](/?search=asocial-media%2Fallegro-api)Library[HTTP &amp; Networking](/categories/http)

zoondo/allegro-api
==================

The PHP Interface for Allegro RestAPI and Allegro WebAPI

3.1.0(6y ago)91.3k12[1 PRs](https://github.com/asocial-media/allegro-api/pulls)MITPHPPHP &gt;=5.2.4

Since Jun 6Pushed 1mo ago3 watchersCompare

[ Source](https://github.com/asocial-media/allegro-api)[ Packagist](https://packagist.org/packages/zoondo/allegro-api)[ Docs](https://asocial.media)[ RSS](/packages/zoondo-allegro-api/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (15)Used By (0)

README
======

[](#readme)

The PHP interface which allows you to communicate with **Allegro WebAPI and RestApi**

Requirements
------------

[](#requirements)

- PHP &gt;= 5.2.4

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

[](#installation)

### Composer (recommended)

[](#composer-recommended)

```
$ composer require asocial-media/allegro-api
```

### Manually

[](#manually)

```
$ git clone https://github.com/asocial-media/allegro-api.git
```

or just [download zip archive](https://github.com/asocial-media/allegro-api/archive/master.zip)

Basic usage of Allegro RestApi
------------------------------

[](#basic-usage-of-allegro-restapi)

```
// Used namespace
use AsocialMedia\AllegroApi\AllegroRestApi;

// Register your application here:
// https://apps.developer.allegro.pl

// Creating auth URL using client id and redirect_uri
var_dump(
    AllegroRestApi::getAuthLink($clientId, $redirectUri)
);

// After clicking above link you need to grant permission and then
// you will be redirected to:
//     $redirectUri with special code in URL (GET)
//
// Use above code to finally generate your access token
$tokens = AllegroRestApi::generateToken(
    (isset($_GET['code']) ? $_GET['code'] : null),
    $clientId,
    $clientSecret,
    $redirectUri
);

// Token will be active for 12 hours and you can refresh
// it indefinitely (via cron job)
AllegroRestApi::refreshToken(
    $tokens->refresh_token,
    $clientId,
    $clientSecret,
    $redirectUri
);

// If we have our access token we can finally request REST API

// Creating an instance of RestApi
$restApi = new AllegroRestApi($tokens->access_token);

// Getting our comments
$response = $restApi->get('/sale/user-ratings?user.id=' . $yourUserId);

// Creating 2 variants using color/pattern
$response = $restApi->put('/sale/offer-variants/' . $restApi->getUuid(), array(
    'name'       => 'Wariant 1',
    'offers'     => array(
        array(
            'id'           => '6846772956',
            'colorPattern' => 'yellow_gold'
        ),
        array(
            'id'           => '6846772915',
            'colorPattern' => 'white_rhodium'
        )
    ),
    'parameters' => array(
        array(
            'id' => 'color/pattern'
        ),
    )
), array(
    'Content-Type' => 'application/vnd.allegro.beta.v1+json', // Some actions needs version change from "public" to "beta"
    'Accept'       => 'application/vnd.allegro.beta.v1+json', // Some actions needs version change from "public" to "beta"
));
```

Basic usage of Allegro WebApi
-----------------------------

[](#basic-usage-of-allegro-webapi)

```
// Used namespace
use AsocialMedia\AllegroApi\AllegroApi;

// Creating new instance of AllegroApi
$api = new AllegroApi('your_api_key');

// We are going to login using Allegro WebApi
$api->login(array(
    'userLogin'    => 'example',
    'userPassword' => 'examplepass',
    'countryCode'  => $api->getCountry(),
    'webapiKey'    => $api->getApiKey(),
    'localVersion' => $api->getVersionKey(),
));
// For now, we have an access to $api->getSession()

// Getting our current black list using Allegro WebApi
$response = $api->doGetBlackListUsers(array(
    'sessionHandle' => $api->getSession(),
));

// We can also omit "do" prefix in method names
$response = $api->getBlackListUsers(array(
    'sessionHandle' => $api->getSession(),
));
```

Authors
-------

[](#authors)

- Maciej Strączkowski -

License
-------

[](#license)

The files in this archive are released under the [MIT LICENSE](LICENSE).

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance59

Moderate activity, may be stable

Popularity27

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 58.3% 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 ~114 days

Recently: every ~89 days

Total

13

Last Release

2307d ago

Major Versions

1.0.3 → 2.0.02018-06-19

2.0.5 → 3.0.02019-03-26

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1781892?v=4)[Maciej Strączkowski](/maintainers/mstraczkowski)[@mstraczkowski](https://github.com/mstraczkowski)

---

Top Contributors

[![mstraczkowski](https://avatars.githubusercontent.com/u/1781892?v=4)](https://github.com/mstraczkowski "mstraczkowski (7 commits)")[![vt-parhomenko](https://avatars.githubusercontent.com/u/15807120?v=4)](https://github.com/vt-parhomenko "vt-parhomenko (3 commits)")[![gbr161](https://avatars.githubusercontent.com/u/3307202?v=4)](https://github.com/gbr161 "gbr161 (1 commits)")[![mtz29](https://avatars.githubusercontent.com/u/33105795?v=4)](https://github.com/mtz29 "mtz29 (1 commits)")

---

Tags

allegroapiphpwebapiapirestwebapiallegro

### Embed Badge

![Health badge](/badges/zoondo-allegro-api/health.svg)

```
[![Health](https://phpackages.com/badges/zoondo-allegro-api/health.svg)](https://phpackages.com/packages/zoondo-allegro-api)
```

###  Alternatives

[mediamonks/rest-api-bundle

MediaMonks Rest API Symfony Bundle

1656.2k1](/packages/mediamonks-rest-api-bundle)

PHPackages © 2026

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