Quickstart

From zero to a running instance in three steps.

1

Create an account

Sign up at dash.greybull.nl
2

Create an API token

Dashboard → Settings → API Tokens
3

Deploy your first instance

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"}'

API reference

All Greybull services are available via a RESTful API. Authentication is handled via API tokens that you create in the dashboard.

Example: list instances
curl -H "Authorization: Bearer $GREYBULL_TOKEN" \
  https://dash.greybull.nl/api/v1/compute/instances
Response
{
  "instances": [{
    {
      "id": "i-abc123",
      "type": "cx-s",
      "region": "nl-ens-1",
      "status": "running",
      "ip": "185.123.45.67"
    }
  ]
}

Need help?

Can't figure it out? Get in touch with our team.