Features
Compute
- Flexible sizing — Choose from predefined pricing plans with various CPU, RAM, and storage combinations
- On-demand scaling — Resize CPU and RAM at any time (requires VM restart)
- Multiple OS templates — Ubuntu, Debian, CentOS, Windows Server, and more
Networking
- Public IPv4 — Every VM gets a public IPv4 address
- IPv6 support — Optional public IPv6 address
- Private networking — Automatic VPC with private IPv4 address
- Custom VPCs — Create shared VPCs with custom CIDR ranges
- Bandwidth — Outbound bandwidth included per plan (measured in TB/month)
Storage
- Base storage — Included with each pricing plan
- Block storage volumes — Attach additional storage volumes
- Snapshots — Point-in-time snapshots of VM state
- Backups — Automated daily, weekly, or monthly backups with configurable retention
Security
- SSH key authentication — Upload SSH keys during VM creation
- Password authentication — Alternative to SSH keys
- VPC isolation — Private networking between VMs
Billing
- Hourly billing — Pay only for what you use, billed to the minute
- Pay-as-you-go — No long-term commitments required
- Stopped VM billing — Stopped VMs retain resources and continue billing
Availability
Regions
| Region | Location | Status |
|---|
us-east | United States (East) | Available |
Additional regions are planned. Check the dashboard for the latest availability.
VM Status Lifecycle
Creation: initiating → provisioning → booting → active
Stop: active → finalizing → passive
Start: passive → booting → active
Reboot: active → booting → active
Delete: any state → terminated
Failure: any state → failure (non-billable)
| Status | Description | Billable |
|---|
initiating | Queued, initial setup before provisioning | Yes |
provisioning | VM being created in the hypervisor | Yes |
booting | Starting up | Yes |
active | Running and accessible via SSH | Yes |
passive | Stopped, resources reserved | Yes |
finalizing | Shutting down | Yes |
failure | Creation or operation failed | No |
unknown | Unhandled state | No |
| Resource | Limit |
|---|
| VMs per account | Contact support for limits |
| Max CPU per VM | Determined by pricing plan |
| Max RAM per VM | Determined by pricing plan |
| Max storage per VM | Base + additional volumes |
| Snapshots per VM | No hard limit |
| Backup schedules per VM | 1 per type (daily/weekly/monthly) |
API Endpoints
| Operation | Method | Endpoint |
|---|
| List VMs | GET | /api/v1/vms |
| Create VM | POST | /api/v1/vms |
| Get VM | GET | /api/v1/vms/{id} |
| Delete VM | DELETE | /api/v1/vms/{id} |
| Start VM | POST | /api/v1/vms/{id}/start |
| Stop VM | POST | /api/v1/vms/{id}/stop |
| Reboot VM | POST | /api/v1/vms/{id}/reboot |
| Resize VM | POST | /api/v1/vms/{id}/resize |