Everything you need to start with Greybull. From first deploy to full production setup.
From zero to a running instance in three steps.
Dashboard → Settings → API Tokenscurl -X POST https://dash.greybull.nl/api/v1/compute \
-H "Authorization: Bearer $TOKEN" \
-d '{"type":"cx-s","region":"nl-ens-1","image":"ubuntu-24.04"}'In-depth guides per product line.
All Greybull services are available via a RESTful API. Authentication is handled via API tokens that you create in the dashboard. DNS and domains can also be managed from your terminal with the greybull CLI.
curl -H "Authorization: Bearer $GREYBULL_TOKEN" \
https://dash.greybull.nl/api/v1/compute/instances{
"instances": [{
{
"id": "i-abc123",
"type": "cx-s",
"region": "nl-ens-1",
"status": "running",
"ip": "185.123.45.67"
}
]
}npx greybull login
npx greybull dns zones
npx greybull dns add example.nl A www 203.0.113.20
npx greybull domains check mycompany --tlds nl,com