PHPackages                             alekseon/yuppim-api-v1-php-sdk - 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. alekseon/yuppim-api-v1-php-sdk

ActiveLibrary[API Development](/categories/api)

alekseon/yuppim-api-v1-php-sdk
==============================

Yuppim Api PHP SDK

1.0.2(7mo ago)011MITPHPPHP &gt;=7.0

Since Sep 21Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/Alekseon/yuppim-api-v1-php-sdk)[ Packagist](https://packagist.org/packages/alekseon/yuppim-api-v1-php-sdk)[ RSS](/packages/alekseon-yuppim-api-v1-php-sdk/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (6)Used By (0)

Yuppim API v1 PHP SDK
=====================

[](#yuppim-api-v1-php-sdk)

It is an official PHP SDK for Yuppim PHP API v1.

Getting started
---------------

[](#getting-started)

In order to use this library you need to have at least PHP 7.0 version.

##### Use [Composer](https://getcomposer.org/)

[](#use-composer)

You will need to download Yuppim PHP SDK using Composer:

```
composer require alekseon/yuppim-api-v1-php-sdk

```

If you are not familiar with Composer, learn about it [here](https://getcomposer.org/doc/01-basic-usage.md).

Usage examples
--------------

[](#usage-examples)

In the given example you will see how to initiate selected API and a actions which are available:

- Get single product by ID
- Get array of products
- Get array of manufacturers
- Get array of suppliers

```
// get single product
$productApi = (new \YuppimApi\Yuppim('your-token'))->product();
$product = $productApi->get($productId);

// get all of products, deafult limit is 100 products in one response
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$products = $productsApi->get();

// get products with pagination
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->setLimit($limit);
$productsApi->setPage($page);
$products = $productsApi->get();

// get products filtered
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->addFilter($field, $operator, $value);
$products = $productsApi->get();

// get manufacturers list
$manufacturersApi = (new \YuppimApi\Yuppim('your-token'))->manufacturers();
$manufactreres = $manufacturersApi->get();

// get suppliers list
$suppliersApi = (new \YuppimApi\Yuppim('your-token'))->suppliers();
$suppliers = $suppliersApi->get();
```

### Product filters

[](#product-filters)

Fields allowed to filter are:

- Nazwa
- Nazwa\_lub\_identyfikator
- Numer\_katalogowy
- Cena\_obowiazuje\_od
- Data\_dodania
- Data\_modyfikacji
- Producent
- Dostawca

The supported operators are:

- "="
- "&gt;"
- "&lt;"
- "!="
- "IN"
- "CONTAINS"
- "STARTS WITH"
- "MATCH"

Note: Not all operators are available for all reference fileds.

```
// get products filtered example
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->addFilter('Data_dodania', '>', '2020-01-01 00:00:00');
$productsApi->addFilter('Dostawca', 'IN', ['Dostawca_X', 'Dostawca_Y']);
$product = $productsApi->get();
```

Support and Feedback
--------------------

[](#support-and-feedback)

In case you find any bugs, submit an issue directly here in GitHub.

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance62

Regular maintenance activity

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

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

Total

4

Last Release

231d ago

Major Versions

0.0.1 → 1.0.02020-09-22

PHP version history (2 changes)0.0.1PHP ^7.0

1.0.2PHP &gt;=7.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/32155490?v=4)[Alekseon Sp. z o.o.](/maintainers/Alekseon)[@Alekseon](https://github.com/Alekseon)

---

Top Contributors

[![marcinfr](https://avatars.githubusercontent.com/u/1800417?v=4)](https://github.com/marcinfr "marcinfr (15 commits)")

### Embed Badge

![Health badge](/badges/alekseon-yuppim-api-v1-php-sdk/health.svg)

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/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)
