CrownPanel API Overview
CrownPanel's API allows you to manage your VPS programmatically - including actions like power control, hostname changes, snapshot management, and more.
- ๐ API Key: Retrieve your key from Account Settings
- ๐ Endpoint: All API requests must be made via the
POSTmethod to https://api.crownpanel.com
You can use the API with:
- PHP scripts
- CLI tools like
curl - Monitoring systems
- Custom control panels or dashboards
Ideal for automation, integration into management panels, or performing bulk operations across multiple VPS instances.
โก Boot VPS
Use this API to boot (power on) a VPS that is currently powered off.
This is useful when you want to remotely start your server after it's been shut down or stopped.
Key(s) and variable(s) required for this call
Example Responses
โ
If YOUR_API_KEY, QUERY & YOUR_VMID are valid:
{"query_status": "Success", "query": "boot", "query_result": "Success, Task Added. Please wait for 1-2 minutes for it to complete."}
โ If API_KEY, QUERY, or VMID are invalid:
{"query_status": "Error", "query": "", "query_result": ""}
CURL Example
๐ Other Language Examples
If you prefer to use another language or environment, here are examples for PHP, Python and Node.js:
PHP Example
Python Example
โ๏ธ Install (only once): Required to install necessary libraries before running the code.
Node.js Example
โ๏ธ Install (only once): Required to install necessary libraries before running the code.
๐ Related API Calls
- ๐ VPS Task Log
- โน๏ธ VPS Information
- ๐ป Shutdown VPS
- ๐ Reboot VPS
- ๐งจ Hard Reboot VPS
Need help? Visit our Support Portal or reach out via our live chat.

