Skip to main content
GET
/
servers
/
{server}
Get server details
curl --request GET \
  --url https://console.cloudblast.io/api/v2/servers/{server} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "uuid_short": "a1b2c3d4",
    "name": "Starter VPS",
    "status": null,
    "cpu": 2,
    "memory": 2147483648,
    "disk": 42949672960,
    "bandwidth_usage": 536870912,
    "bandwidth_limit": 1073741824000,
    "node_id": 1,
    "created_at": "2026-01-10T14:00:00+00:00",
    "ip_addresses": [
      {
        "address": "203.0.113.50",
        "type": "ipv4",
        "gateway": "203.0.113.1",
        "cidr": 24,
        "rdns": "server1.example.com"
      }
    ],
    "root_password": "k3Fm9xPq",
    "password_status": "ready",
    "plan": {
      "id": 123,
      "name": "<string>",
      "monthly_price": 123,
      "hourly_price": 123
    },
    "operating_system": "Ubuntu 24.04 LTS"
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Path Parameters

server
string
required

Server UUID (36 chars) or short UUID (8 chars)

Response

Server details

data
object