Signed licensing and live telemetry

Control every server.Protect every install.

A web-ready HTML interface, PHP API, MySQL/MariaDB database, approval workflow, heartbeat validation, and instant remote suspension for AtomStabilizer.

HMAC-SHA256Signed plugin requests AES-256-GCMEncrypted install secrets Fail closedRemote access enforcement
COMPLETE WEBSITE PACKAGE

Upload it directly as a website.

The frontend and API can run from public_html, /var/www/html, a subdomain, or a normal website subfolder. No custom document-root configuration is required.

01

Browser installer

Connect the existing phpMyAdmin database, import all tables, create the first administrator, and generate encryption keys.

02

HTML-ready frontend

Use the included public page, status widget, or fetch the health endpoint from another allowed HTML website through configurable CORS.

03

Remote plugin control

Every new server starts as pending. Activate, suspend, reactivate, or permanently revoke it from the secure admin panel.

HTML + JAVASCRIPT SUPPORT

Use the API from your own site.

The public health endpoint returns JSON and can be called by any origin added during installation. Same-site HTML works automatically.

HTML / JavaScript status exampleGET /api/v1/health.php
<span id="atom-api">Checking…</span>
<script>
fetch('https://pluginsapi.atomnode.space/api/v1/health.php')
  .then(response => response.json())
  .then(data => {
    document.querySelector('#atom-api').textContent =
      data.ok ? 'AtomStabilizer API is online' : 'API unavailable';
  });
</script>
GET

Health endpoint

https://pluginsapi.atomnode.space/api/v1/health.php

POST

Registration endpoint

https://pluginsapi.atomnode.space/api/v1/register.php

POST

Heartbeat endpoint

https://pluginsapi.atomnode.space/api/v1/heartbeat.php