Get virtual server firmware information

Retrieve detailed firmware information for a specific virtual server (VM), including BIOS, TPM, and Secure Boot settings. Returns a `requestId` to track the operation in other systems.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
429
error string
message string
retryAfter string
requestId string
500
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/vm/{vmid}/firmware
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/vm/6912/firmware" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "vmid": "string",
    "node": "string",
    "status": "string",
    "bios": "string",
    "machine": "string",
    "efi": {
      "raw": "string",
      "volume": "string",
      "type": "string",
      "size": "string",
      "preEnrolledKeys": "string"
    },
    "tpm": {
      "raw": "string",
      "volume": "string",
      "size": "string",
      "version": "string"
    },
    "secureBootReady": true,
    "tpmReady": true,
    "mode": "string"
  }
}