PHPackages                             tracker-my-com/mytracker-client-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. tracker-my-com/mytracker-client-php

ActiveLibrary[API Development](/categories/api)

tracker-my-com/mytracker-client-php
===================================

A PHP library to interact with API of tracker.my.com

1.1.0(2y ago)08MITPHP

Since Aug 18Pushed 2y ago3 watchersCompare

[ Source](https://github.com/tracker-my-com/mytracker-client-php)[ Packagist](https://packagist.org/packages/tracker-my-com/mytracker-client-php)[ Docs](https://tracker.my.com/)[ RSS](/packages/tracker-my-com-mytracker-client-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (10)Versions (3)Used By (0)

✨ Features
----------

[](#-features)

- Thin &amp; minimal HTTP client to interact with MyTracker's API
- Supports php `^8.0`.
- Adheres to PSR-18, PSR-17 and PSR-7 principles under the hood.

💡 Getting Started
-----------------

[](#-getting-started)

First, install MyTracker PHP API Client via the [composer](https://getcomposer.org/) package manager:

```
composer require tracker-my-com/mytracker-client-php
```

Then, use `\MyTracker\ExportApi\*Client` classes in your code:

```
use Http\Discovery\Psr18Client;
use MyTracker\ExportApi\QuotasClient;
use MyTracker\ExportApi\RawDataClient;

$psr18Client = new Psr18Client();

$quotasClient = new QuotasClient('appUserId', 'apiSecretKey', $psr18Client);
$result = $quotasClient->get();
echo $result->getBody();

$rawDataClient = new RawDataClient('appUserId', 'apiSecretKey', $psr18Client);
$result = $rawDataClient->create([
    'event' => 'payments',
    'selectors' => 'idCountry,waid,idAccount,iosVendorId',
    'dateTo' => '2017-11-30',
    'dateFrom' => '2017-11-02',
    'timezone' => 'Europe/Moscow',
]);
echo $result->getBody();

$result = $rawDataClient->get(123 /* idRawExport from the previous request */);
echo $result->getBody();

$reportClient = new ReportClient('appUserId', 'apiSecretKey', $psr18Client);
$result = $reportClient->create([
    'settings' => [
        'filter' => [
            'date' => [
                'from' => '2020-07-10',
                'to' => '2020-07-17',
            ],
        ],
        'selectors' => 'idApp,countInstall',
        'idCurrency' => 643,
        'tz' => 'Europe/Moscow',
        'precision' => 2,
        'retIndent' => 3600,
    ]
]);

$result = $reportClient->get(123 /* idReportFile from the previous request */);
echo $result->getBody();
```

For full documentation, visit the **[MyTracker Export API docs](https://docs.tracker.my.com/api/export-api/about)**.

❓ Troubleshooting
-----------------

[](#-troubleshooting)

Encountering an issue? [Contact us!](https://tracker.my.com/contact)

📄 License
---------

[](#-license)

MyTracker PHP API Client is an open-sourced software licensed under the [MIT license](LICENSE.md).

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity44

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

Total

2

Last Release

928d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4c7145482a3dd540222ed7d7bd1a6a78f2e313b321f4e4502972533c3870191f?d=identicon)[vsushkov](/maintainers/vsushkov)

---

Top Contributors

[![vsushkov](https://avatars.githubusercontent.com/u/358764?v=4)](https://github.com/vsushkov "vsushkov (2 commits)")

### Embed Badge

![Health badge](/badges/tracker-my-com-mytracker-client-php/health.svg)

```
[![Health](https://phpackages.com/badges/tracker-my-com-mytracker-client-php/health.svg)](https://phpackages.com/packages/tracker-my-com-mytracker-client-php)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[openai-php/client

OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API

5.8k22.6M232](/packages/openai-php-client)[brd6/notion-sdk-php

Notion SDK for PHP

5918.0k](/packages/brd6-notion-sdk-php)[phpro/http-tools

HTTP tools for developing more consistent HTTP implementations.

28137.8k](/packages/phpro-http-tools)[getbrevo/brevo-php

Official Brevo provided RESTFul API V3 php library

963.1M35](/packages/getbrevo-brevo-php)[swisnl/json-api-client

A PHP package for mapping remote JSON:API resources to Eloquent like models and collections.

211473.2k12](/packages/swisnl-json-api-client)

PHPackages © 2026

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