Open PHP API

E-CUBE

A clean, config-powered app selector with fully open endpoints, bright light mode, deep dark mode, and subtle green accents throughout.

Config-driven and deployment ready
Apps
6
Theme
Light + Dark
API
Open
Stack
Pure PHP
App selector

Pick an app from config

API base http://e-cube.enzonic.com/api
Documentation

API and embed usage

GET /api

Returns API metadata, endpoint discovery, and config expectations.

GET /api/apps

Returns the full app list. Add ?q=drive to search.

GET /api/apps/{id}

Returns one app by generated slug id like google-drive.

EMBED /embed

Simple embeddable widget page for iframe or script-based drop-in usage.

$apps[] = [
    'name' => 'Your App Name',
    'description' => 'Short description here',
    'icon_url' => 'https://example.com/icon.png',
    'url' => 'https://example.com',
];
<div id="ecube-widget"></div>
<script
    src="http://e-cube.enzonic.com/assets/embed.js"
    data-mount="#ecube-widget"
    data-theme="dark"
    data-title="Workspace Apps"
    data-limit="4"
    data-height="420"
></script>