PHPackages                             sinbadxiii/priceva-api-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. sinbadxiii/priceva-api-php

ActiveLibrary[API Development](/categories/api)

sinbadxiii/priceva-api-php
==========================

1901PHP

Since Jul 6Pushed 7y ago1 watchersCompare

[ Source](https://github.com/sinbadxiii/priceva-api-php)[ Packagist](https://packagist.org/packages/sinbadxiii/priceva-api-php)[ RSS](/packages/sinbadxiii-priceva-api-php/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (2)Used By (0)

Priceva API PHP
===============

[](#priceva-api-php)

Public API Priceva - Competitor Monitoring Price Tracking Solution .

Getting Started
===============

[](#getting-started)

### Requirements

[](#requirements)

To use this component, you need at least:

- Composer
- PHP &gt;= 5.5

NOTE: Support for legacy PHP versions (down to 7.0) is provided on a best-effort basis.

### Installing

[](#installing)

#### Composer

[](#composer)

```
$ php composer require sinbadxiii/priceva-api-php

```

or create the composer.json file as follows:

```
{
    "require": {
        "sinbadxiii/priceva-api-php": "dev-master"
    }
}

```

Use
===

[](#use)

```
$api = new PricevaApi(['apiKey' => 'xxxxxxxxxxxxxx']);

//check access api
$api->ping()

//get all products
$api->productList();

//get one product
$api->getProduct($codeProduct);

//get all report
$api->reportList();

```

If you want to use a filter, you can set the condition in two ways.

The first way is to create an array with filter fields and pass it to the method, for example:

```
$api = new PricevaApi(['apiKey' => 'xxxxxxxxxxxxxx']);

$filter = [
    'limit' => 10,
    'brand_id' => 't'
];

$api->productList($filter);
...
$api->reportList($filter);

```

fields for the filter

```
$filter = [
    'page'        => 1;
    'limit'       => 100;
    'category_id' => [];
    'brand_id'    => [];
    'company_id'  => "";
    'region_id'   => "";
    'active'      => 1;
    'name'        => "";
    'articul'     => "";
    'client_code' => [];
];

```

The second way is to query using the filter constructor createFilter():

```
$api = new PricevaApi(['apiKey' => 'xxxxxxxxxxxxxx']);

$result = $api->createFilter()
              ->setLimit(10)
              ->setPage(2)
              ->setCompany('b')
              ->execute()         //the required method for assembling the filter
              ->productList();

...

$result = $api->createFilter()
              ->setLimit(10)
              ->setPage(2)
              ->setCompany('b')
              ->execute()
              ->reportList();

```

Constructor methods:

- setPage($page);
- setLimit($limit);
- setCategory($category\_id);
- setBrand($brand\_id);
- setCompany($company\_id);
- setRegion($region\_id);
- setActive($active);
- setName($name);
- setSku($sku);
- setCodeProduct($client\_code);

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65.2% 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://www.gravatar.com/avatar/d43ec6596bb88c8c2751c8839da5ddc9272ef1d482b67fcf686a1203b340044d?d=identicon)[sinbadxiii](/maintainers/sinbadxiii)

---

Top Contributors

[![sinbadxiii](https://avatars.githubusercontent.com/u/900273?v=4)](https://github.com/sinbadxiii "sinbadxiii (15 commits)")[![sinbad13](https://avatars.githubusercontent.com/u/30714347?v=4)](https://github.com/sinbad13 "sinbad13 (8 commits)")

### Embed Badge

![Health badge](/badges/sinbadxiii-priceva-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/sinbadxiii-priceva-api-php/health.svg)](https://phpackages.com/packages/sinbadxiii-priceva-api-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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