> INITIALIZING_DEVELOPER_ECOSYSTEM_v3.0
BoostonCP API Ecosystem
Automate your infrastructure with the most powerful hosting automation API. Manage master licenses and server node orchestration programmatically.
01. License Management API (Reseller Core)
Manage your white-label reseller business via the BoostonCP partner API. Our endpoints allow full programmatic control over sub-licenses.
POST
http://boostoncp.com/api/order_api.php
RESELLER_ENDPOINTS
| Action Protocol | Description | Requirements |
|---|---|---|
get_packages | Fetch license tiers and pricing protocols. | api_key |
buy_license | Acquire new license via wallet credits. | api_key, package_id |
suspend | Isolate and suspend a target sub-license. | api_key, license_key |
unsuspend | Re-calibrate and activate suspended nodes. | api_key, license_key |
terminate | Permanently purge sub-license record. | api_key, license_key |
02. Server Orchestration API (Native Core)
BoostonCP is the best cPanel alternative for developers who need granular server control. These endpoints power our WHMCS server module.
POST
https://YOUR_SERVER_IP:2087/api/whmcs.php
SERVER_LEVEL_OPERATIONS
| Command | Operation Logic | Input Nodes |
|---|---|---|
create | Initialize user node & secure web root. | username, password |
suspend | Lock account & block incoming web pulse. | username |
unsuspend | Restore account pulse & traffic flow. | username |
terminate | Wipe system user data and home DNA. | username |
user_login | Initialize SSO bypass transmission. | username |
// EXECUTE_CURL_UPLINK
curl -X POST "https://your-server.com:2087/api/whmcs.php?action=create" \ -d "api_key=YOUR_NODE_ACCESS_HASH" \ -d "username=client_x&password=secret123&package_id=1"