Quickstart

In drie stappen van nul naar een draaiende instance.

1

Installeer de CLI

curl -fsSL https://get.cloudhaus.nl | sh
2

Log in

cloudhaus auth login
3

Deploy je eerste instance

cloudhaus compute create \
  --type cx-s \
  --region nl-ams-1 \
  --image ubuntu-24.04

API-referentie

Alle Cloudhaus-diensten zijn beschikbaar via een RESTful API. Authenticatie verloopt via API-tokens die je aanmaakt in het dashboard.

Voorbeeld: instances ophalen
curl -H "Authorization: Bearer $CLOUDHAUS_TOKEN" \
  https://api.cloudhaus.nl/v1/compute/instances
Respons
{
  "instances": [{
    {
      "id": "i-abc123",
      "type": "cx-s",
      "region": "nl-ams-1",
      "status": "running",
      "ip": "185.123.45.67"
    }
  ]
}

Hulp nodig?

Kom je er niet uit? Neem contact op met ons team.