Everything you need to get started with X1 Cloud. Deploy servers, manage infrastructure, and integrate with our API.
X1 Cloud provides high-performance KVM virtual machines with dedicated resources, NVMe SSD storage, and DDoS protection. Get your first server running in under 60 seconds.
The deploy wizard walks you through server creation in just a few steps. You can also deploy via the API for automated workflows.
Once deployed, you will receive your server's IPv4 address and root credentials via the dashboard. We recommend immediately adding an SSH key and disabling password authentication.
All Linux servers include SSH access on port 22 by default. Windows servers use RDP on port 3389.
# Connect to your server
ssh root@<your-server-ip>
# Connect with a specific SSH key
ssh -i ~/.ssh/id_ed25519 root@<your-server-ip>You can add SSH public keys in two ways:
# Generate a new SSH key pair
ssh-keygen -t ed25519 -C "[email protected]"
# Copy your public key to the server
ssh-copy-id -i ~/.ssh/id_ed25519.pub root@<your-server-ip>Manage your servers through the dashboard or the API. All actions are available in both interfaces.
| Action | Description | Downtime |
|---|---|---|
| Start | Power on a stopped server | None |
| Stop | Gracefully shut down the server | Yes |
| Restart | Reboot the server | Brief (~30s) |
| Rebuild | Reinstall the OS (destroys all data) | Yes (~60s) |
| Resize | Change plan (CPU, RAM, disk) | Brief reboot |
| Snapshot | Create a point-in-time backup | None |
| Delete | Permanently remove the server | Permanent |
The X1 Cloud REST API allows you to programmatically manage your infrastructure. All endpoints are available at /api/v1/* and require an API key for authentication.
Include your API key in the Authorization header with every request. You can generate API keys from the dashboard under Settings > API Keys.
# Set your API key
export X1_API_KEY="your-api-key-here"curl -s https://panel.lakshnetworks.com/api/v1/vms \
-H "Authorization: Bearer $X1_API_KEY" \
-H "Content-Type: application/json"Response:
{
"success": true,
"data": [
{
"id": "vm-abc123",
"name": "web-server-01",
"status": "running",
"plan": "cx-md",
"os": "ubuntu-24.04",
"ipv4": "203.0.113.10",
"created_at": "2026-03-15T10:30:00Z"
}
],
"meta": { "total": 1, "page": 1, "limit": 25 }
}curl -s -X POST https://panel.lakshnetworks.com/api/v1/vms \
-H "Authorization: Bearer $X1_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "my-server",
"plan": "cx-md",
"os": "ubuntu-24.04",
"ssh_key": "ssh-ed25519 AAAA... user@host"
}'curl -s -X DELETE https://panel.lakshnetworks.com/api/v1/vms/vm-abc123 \
-H "Authorization: Bearer $X1_API_KEY"X1 Cloud uses hourly billing with monthly caps. You are only charged for resources while they are provisioned. Stopped servers still incur charges for reserved disk and IP addresses.
We accept all major credit and debit cards via Stripe, including Visa, Mastercard, American Express, and Discover. You can manage your payment methods in Billing > Payment Methods.
Each plan includes a monthly bandwidth allocation. Traffic beyond your allocation is billed at $0.01/GB. Inbound traffic is always free.
We provide regularly updated OS images with cloud-init pre-configured for fast provisioning.
Latest long-term support release. Recommended for most workloads.
Previous LTS with broad ecosystem support.
Stable, minimal, and widely used for servers.
Latest stable Debian release.
RHEL-compatible rolling release for enterprise workloads.
Latest CentOS Stream with updated packages.
Cutting-edge packages for development environments.
Full Windows Server with RDP access. Additional licensing fees apply.
Every server comes with a dedicated public IPv4 address and IPv6 address. Additional networking features are available to support complex architectures.
Each server receives one dedicated public IPv4 address included in the plan price. Additional IPv4 addresses can be requested for $3/mo each.
Every server is assigned a /64 IPv6 subnet at no extra cost. IPv6 is configured automatically via cloud-init.
Servers in the same region can communicate over a private VXLAN network at no cost. Private network traffic does not count toward your bandwidth allocation. Enable private networking when deploying or from the server settings.
Floating IPs are static public addresses that can be reassigned between servers instantly. They are useful for high-availability setups where you need to fail over without DNS propagation delays.
We are committed to helping you succeed with X1 Cloud. Our support team is available to assist with infrastructure questions and issues.
X1 Cloud provides a 99.9% monthly uptime SLA for all paid servers. If uptime falls below this threshold in any calendar month, you are eligible for account credit as follows:
| Monthly Uptime | Credit |
|---|---|
| 99.0% - 99.9% | 10% of monthly bill |
| 95.0% - 99.0% | 25% of monthly bill |
| Below 95.0% | 50% of monthly bill |