PHPackages                             antonowano/yandex-taxi-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. [API Development](/categories/api)
4. /
5. antonowano/yandex-taxi-api

AbandonedArchivedLibrary[API Development](/categories/api)

antonowano/yandex-taxi-api
==========================

Provide Yandex Taxi API

v1.4(5y ago)21.1kMITPHPPHP ^7.2

Since Aug 10Pushed 5y ago1 watchersCompare

[ Source](https://github.com/antonowano/yandex-taxi-api)[ Packagist](https://packagist.org/packages/antonowano/yandex-taxi-api)[ RSS](/packages/antonowano-yandex-taxi-api/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

Yandex Taxi API
===============

[](#yandex-taxi-api)

### Installation

[](#installation)

```
composer require antonowano/yandex-taxi-api

```

API v6
------

[](#api-v6)

[Documentation](https://yadi.sk/i/dgsb8oSsuTnOpA)

### Example

[](#example)

```
use Antonowano\ApiYandexTaxi\ApiV6;

$apiKey = 'e921c69caf41620fef42693674b46b76';
$api = new ApiV6($apiKey);

$response = $api->getDriverList();

if ($api->getStatusCode() != 200) {
    throw new \Exception($response['message']);
}

foreach ($response['drivers'] as $driverId => $driver) {
    echo 'Driver id: ' . $driverId . PHP_EOL;
    echo 'First name: ' . $driver['FirstName'] . PHP_EOL;
    echo 'Last name: ' . $driver['LastName'] . PHP_EOL;
    echo 'Surname: ' . $driver['Surname'] . PHP_EOL;
    echo 'Phone: ' . $driver['Phones'] . PHP_EOL;
    echo PHP_EOL;
}
```

API v7
------

[](#api-v7)

[Documentation](https://fleet.taxi.yandex.ru/api/docs/)

### Example

[](#example-1)

```
use Antonowano\ApiYandexTaxi\ApiV7;

$clientId = 'taxi/park/11383f19ad0c90e2f2f64671d045cde8';
$parkId = '11383f19ad0c90e2f2f64671d045cde8';
$apiKey = 'CDNHzvGqtLWCIVLmAzNVGmVtUFwzBrgzL';
$api = new ApiV7($clientId, $parkId, $apiKey);

$response = $api->getDriverList([
    'fields' => [
        'account' => ['balance'],
        'car' => [],
        'current_status' => [],
        'driver_profile' => ['id']
    ],
    'limit' => 3,
    'offset' => 0,
]);

if ($api->getStatusCode() != 200) {
    throw new \Exception($response['message']);
}

foreach ($response['driver_profiles'] as $profile) {
    echo 'Driver Id: ' . $profile['driver_profile']['id'] . PHP_EOL;
    echo 'Balance: ' . $profile['accounts'][0]['balance'] . PHP_EOL;
    echo PHP_EOL;
}
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

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

Total

5

Last Release

2015d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/80ef89d199a1ccccbe23343f30ab316d58bea14534617fb0f84f4407e2fd2f1d?d=identicon)[antonowano](/maintainers/antonowano)

---

Top Contributors

[![antonowano](https://avatars.githubusercontent.com/u/8445829?v=4)](https://github.com/antonowano "antonowano (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/antonowano-yandex-taxi-api/health.svg)

```
[![Health](https://phpackages.com/badges/antonowano-yandex-taxi-api/health.svg)](https://phpackages.com/packages/antonowano-yandex-taxi-api)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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