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 Tokens curl -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.
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"
}
]
}