PHPackages                             destyk/escore-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. destyk/escore-api-php

AbandonedArchivedLibrary[API Development](/categories/api)

destyk/escore-api-php
=====================

Unofficial API for ESCore.gg

1.0.0(3y ago)09MITPHPPHP &gt;=7.0.1

Since Jul 15Pushed 3y ago1 watchersCompare

[ Source](https://github.com/destyk/escore-api-php)[ Packagist](https://packagist.org/packages/destyk/escore-api-php)[ Docs](https://github.com/destyk/escore-api-php)[ RSS](/packages/destyk-escore-api-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

🏆 EScore.gg API
===============

[](#trophy-escoregg-api)

### Unofficial API for [escore.gg](https://www.escore.gg) written on PHP

[](#unofficial-api-for-escoregg-written-on-php)

 [![Made with PHP](https://camo.githubusercontent.com/f1c27762c33166fedb3ed386ce4023cd33ac8375156b6c2ec1f772c038fc2b97/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d616465253230776974682d5048502d2532334646443234323f6c6f676f3d706870266c6f676f436f6c6f723d7768697465)](https://camo.githubusercontent.com/f1c27762c33166fedb3ed386ce4023cd33ac8375156b6c2ec1f772c038fc2b97/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d616465253230776974682d5048502d2532334646443234323f6c6f676f3d706870266c6f676f436f6c6f723d7768697465) [![Repo size](https://camo.githubusercontent.com/4eae359c6e9a4481828689eb18940f444231c2c10abd27e5db86ac50a48f0266/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f64657374796b2f6573636f72652d6170692d706870)](https://camo.githubusercontent.com/4eae359c6e9a4481828689eb18940f444231c2c10abd27e5db86ac50a48f0266/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f64657374796b2f6573636f72652d6170692d706870) [![issues](https://camo.githubusercontent.com/431c2a837bc85b7ec4503cda8e1b1f0f611125566980521bad81d7838c7b98c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f64657374796b2f6573636f72652d6170692d706870)](https://camo.githubusercontent.com/431c2a837bc85b7ec4503cda8e1b1f0f611125566980521bad81d7838c7b98c2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f64657374796b2f6573636f72652d6170692d706870) [![Downloads](https://camo.githubusercontent.com/613beb9a82633552be9c8abb4c3b41333b51a1a7b9849679f81faec2c03fdf52/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64657374796b2f6573636f72652d6170692d7068703f6c6162656c3d646f776e6c6f616473266c6f676f3d5061636b6167697374266c6f676f436f6c6f723d7768697465)](https://camo.githubusercontent.com/613beb9a82633552be9c8abb4c3b41333b51a1a7b9849679f81faec2c03fdf52/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64657374796b2f6573636f72652d6170692d7068703f6c6162656c3d646f776e6c6f616473266c6f676f3d5061636b6167697374266c6f676f436f6c6f723d7768697465) [![Downloads](https://camo.githubusercontent.com/727ce5f087e0ed05e61e936eebbb5883749536713bbab7a75b33a2ae9d92b93e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f646f776e6c6f6164732f64657374796b2f6573636f72652d6170692d7068702f746f74616c3f636f6c6f723d6f72616e6765266c6162656c3d646f776e6c6f616473266c6f676f3d476974487562)](https://camo.githubusercontent.com/727ce5f087e0ed05e61e936eebbb5883749536713bbab7a75b33a2ae9d92b93e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f646f776e6c6f6164732f64657374796b2f6573636f72652d6170692d7068702f746f74616c3f636f6c6f723d6f72616e6765266c6162656c3d646f776e6c6f616473266c6f676f3d476974487562)

🔑 Library installation
----------------------

[](#key-library-installation)

You can install this library using composer:

```
composer require destyk/escore-api-php
```

📝 Using this library
--------------------

[](#memo-using-this-library)

```
require('vendor/autoload.php');

use DestyK\EScore\Signature;
use DestyK\EScore\API;
use DestyK\EScore\RequestException;

try {
    $signature = new Signature();
    $api = new API($signature);

    // There will be an array with data about ALL UPCOMING matches
    $response = $api->getUpcoming();

    ...

    // There will be an array with data about CSGO UPCOMING matches
    $response = $api->getUpcoming([
        'gameType' => 3
    ]);
} catch(RequestException $e) {
    echo $e->getMessage();
}
```

📂 Available Methods
-------------------

[](#open_file_folder-available-methods)

#### 📌 Method `$api->getUpcoming(array $body, array $query)`

[](#pushpin-method-api-getupcomingarray-body-array-query)

Returns a list of upcoming matches:

```
...
// There will be an array with data about ALL UPCOMING matches
$response = $api->getUpcoming();

// There will be an array with data about CSGO UPCOMING matches
$response = $api->getUpcoming([
    'gameType' => 3
]);
```

Returns an object of class `\DestyK\EScore\RequestException` on error.

#### 📌 Method `$api->getLive(array $body, array $query)`

[](#pushpin-method-api-getlivearray-body-array-query)

Returns a list of matches that have already started:

```
...
// There will be an array with data about ALL LIVE matches
$response = $api->getLive();

// There will be an array with data about DOTA 2 LIVE matches
$response = $api->getLive([
    'gameType' => 4
]);
```

Returns an object of class `\DestyK\EScore\RequestException` on error.

#### 📌 Method `$api->getFinished(array $body, array $query)`

[](#pushpin-method-api-getfinishedarray-body-array-query)

Returns a list of matches that have already started:

```
...
// There will be an array with data about ALL FINISHED matches
$response = $api->getFinished();

// There will be an array with data about LOL FINISHED matches
$response = $api->getFinished([
    'gameType' => 1
]);
```

Returns an object of class `\DestyK\EScore\RequestException` on error.

📂 Games id's
------------

[](#open_file_folder-games-ids)

ALL - `0`
CS:GO - `3`
Dota 2 - `4`
LOL - `1`

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

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

Unknown

Total

1

Last Release

1402d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ef6621b1322ed262e23c200ad6f1de26a0f10c1a053231acacb07c6c33067d90?d=identicon)[DestyK](/maintainers/DestyK)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/destyk-escore-api-php/health.svg)

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

###  Alternatives

[allyans3/steam-market-api-v2

Steam Market API v2

1937.3k](/packages/allyans3-steam-market-api-v2)[chapter-three/apple-news-api

Push content to Apple News.

38307.5k3](/packages/chapter-three-apple-news-api)[saleh7/proxmox-ve_php_api

ProxmoxVE PHP API

11718.7k](/packages/saleh7-proxmox-ve-php-api)[yunchuang/appstore-connect-api

sdk for appstore connect api

3865.3k](/packages/yunchuang-appstore-connect-api)[infifni/fan-courier-api-client

Fan Courier API Client

1332.6k](/packages/infifni-fan-courier-api-client)

PHPackages © 2026

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