Run a VM in under a minute

  1. Fund your wallet. Top up Drocoin so the first hour can be debited.
  2. Choose a plan. Open DRO Cloud and pick a size from the catalogue.
  3. Provision. Give the VM a name and OS image, then submit.
  4. Wait ~60s. Status goes Provisioning → Active and an IP is allocated.
  5. Connect. SSH in with your key, or use the browser console.

Deploy a container (developers)

If you prefer declarative container compute, one authenticated call creates a tenant container; the platform places and runs it for you:

curl -X POST https://<your-host>/api/v2/compute/ \
  -H "Authorization: Bearer $DRO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "web",
    "host_key": "mia-1",
    "repository": "nginx",
    "tag": "stable",
    "cpu_limit": "1.0",
    "mem_limit": "512m"
  }'

See the API Reference for the full surface.

© 2026 DRO Platform