PHPackages                             hypernode/api-client - 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. hypernode/api-client

ActiveLibrary[API Development](/categories/api)

hypernode/api-client
====================

Hypernode API Client for PHP

0.6.0(1mo ago)94.3k↓64.6%2[1 issues](https://github.com/ByteInternet/hypernode-api-php/issues)MITPHPCI passing

Since Oct 21Pushed 1mo ago8 watchersCompare

[ Source](https://github.com/ByteInternet/hypernode-api-php)[ Packagist](https://packagist.org/packages/hypernode/api-client)[ RSS](/packages/hypernode-api-client/feed)WikiDiscussions master Synced 1w ago

READMEChangelog (8)Dependencies (20)Versions (10)Used By (0)

Hypernode API PHP Client
========================

[](#hypernode-api-php-client)

***Please note: this project is still in its early stages and the API may be subject to change.***

Installation
------------

[](#installation)

```
composer require hypernode/api-client
```

The API client is HTTP client agnostic, which means that it's compatible with any HTTP client implementing [PSR-18 interface](https://www.php-fig.org/psr/psr-18/).

Popular HTTP client implementations are: [Guzzle](https://packagist.org/packages/guzzlehttp/guzzle) and [Symfony HTTP Client](https://packagist.org/packages/symfony/http-client).

A full list of implementations, can be [found here](https://packagist.org/providers/psr/http-client-implementation).

Usage
-----

[](#usage)

### Acquiring an API token

[](#acquiring-an-api-token)

Each Hypernode has an API token associated with it, you can use that to talk to the API directly. You can find the token in `/etc/hypernode/hypernode_api_token`. For API tokens with special permissions please contact .

### Using the client

[](#using-the-client)

```
use Hypernode\Api\HypernodeClientFactory;

require_once 'vendor/autoload.php';

$client = HypernodeClientFactory::create(getenv('HYPERNODE_API_TOKEN'));

// For the Hypernode `johndoe` PHP version to 8.1 and Node.js version to 18
$job = $client->settings->setBatch('johndoe', [
    'php_version' => '8.1',
    'nodejs_version' => '18'
]);

// If something has changed, wait for the changes to be applied.
while ($job && !$job->completed()) {
    sleep(2);
    $job->refresh();
}
```

Supported features
------------------

[](#supported-features)

Here's a list of Hypernode API features implemented in the client.

- Listing Hypernodes related to your API key
- Updating one or multiple Hypernode settings at once.
- Querying/polling the logbook for the status of a job.
- Listing, creating, updating and cancelling Brancher Hypernode instances.
- Ordering a new Hypernode.
- Listing and creating backups.
- Listing, creating and deleting whitelist entries.
- Listing products and retrieving the current product of a Hypernode.
- Listing SLA addons.
- Listing available preinstall configurations.
- Listing available settings (EAV descriptions) and block attack descriptions.
- Listing and creating Insights annotations.

Related projects
----------------

[](#related-projects)

- The official [Hypernode API Python Client](https://github.com/byteinternet/hypernode-api-python)
- The official [Hypernode Deploy](https://github.com/byteinternet/hypernode-deploy-configuration) tool
- The official [Hypernode Docker](https://github.com/byteinternet/hypernode-docker) image

###  Health Score

47

—

FairBetter than 93% of packages

Maintenance91

Actively maintained with recent releases

Popularity30

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 71.4% 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 ~170 days

Recently: every ~299 days

Total

9

Last Release

33d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3043901?v=4)[Hypernode](/maintainers/hypernode)[@Hypernode](https://github.com/Hypernode)

---

Top Contributors

[![tdgroot](https://avatars.githubusercontent.com/u/1165302?v=4)](https://github.com/tdgroot "tdgroot (40 commits)")[![vdloo](https://avatars.githubusercontent.com/u/1437341?v=4)](https://github.com/vdloo "vdloo (6 commits)")[![peterjaap](https://avatars.githubusercontent.com/u/431360?v=4)](https://github.com/peterjaap "peterjaap (4 commits)")[![markdentoom](https://avatars.githubusercontent.com/u/59030690?v=4)](https://github.com/markdentoom "markdentoom (3 commits)")[![AlexanderGrooff](https://avatars.githubusercontent.com/u/4996020?v=4)](https://github.com/AlexanderGrooff "AlexanderGrooff (1 commits)")[![poespas](https://avatars.githubusercontent.com/u/10142882?v=4)](https://github.com/poespas "poespas (1 commits)")[![martijneichelsheim](https://avatars.githubusercontent.com/u/76106052?v=4)](https://github.com/martijneichelsheim "martijneichelsheim (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/hypernode-api-client/health.svg)

```
[![Health](https://phpackages.com/badges/hypernode-api-client/health.svg)](https://phpackages.com/packages/hypernode-api-client)
```

###  Alternatives

[telnyx/telnyx-php

Official Telnyx PHP SDK — APIs for Voice, SMS, MMS, WhatsApp, Fax, SIP Trunking, Wireless IoT, Call Control, and more. Build global communications on Telnyx's private carrier-grade network.

36826.2k2](/packages/telnyx-telnyx-php)[laravel/framework

The Laravel Framework.

34.9k556.2M21.5k](/packages/laravel-framework)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M535](/packages/pimcore-pimcore)[openai-php/client

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

5.8k29.9M347](/packages/openai-php-client)[private-packagist/api-client

Private Packagist API Client

3786.3k1](/packages/private-packagist-api-client)[brd6/notion-sdk-php

Notion SDK for PHP

6124.4k](/packages/brd6-notion-sdk-php)

PHPackages © 2026

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