Special Offer: Get 25% OFF your first order! Use code: WELCOME25

> 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.

GENERATE API KEY
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 ProtocolDescriptionRequirements
get_packagesFetch license tiers and pricing protocols.api_key
buy_licenseAcquire new license via wallet credits.api_key, package_id
suspendIsolate and suspend a target sub-license.api_key, license_key
unsuspendRe-calibrate and activate suspended nodes.api_key, license_key
terminatePermanently 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

CommandOperation LogicInput Parameters
createInitialize user account & secure web root.username, password
suspendLock account & block incoming web requests.username
unsuspendRestore account access & traffic flow.username
terminateWipe system user data and home directory.username
user_loginInitialize SSO redirect login.username
// EXECUTE_CURL_REQUEST
curl -X POST "https://your-server.com:2087/api/whmcs.php?action=create" \
-d "api_key=YOUR_API_ACCESS_HASH" \
-d "username=client_x&password=secret123&package_id=1"