---
title: "Get hardware summary (drives, RAM, RAID status)"
method: GET
path: "/device/{deviceId}/hardware"
tags: ["Device"]
---

# Get hardware summary (drives, RAM, RAID status)

`GET /device/{deviceId}/hardware`

## Headers

- `X-Fields` string, mask

## Response `200`

Hardware summary retrieved

- DeviceHardware
  - `deviceId` integer — The unique ID of the device.
  - `driveCount` integer — Number of physical drives detected.
  - `driveTypes` string[] — Distinct drive types present on the device (NVMe, SSD, HDD).
  - `drives` DeviceHardwareDrive[]
    - `description` string — LSHW description of the drive.
    - `isNvme` boolean — True if drive is NVMe.
    - `isSsd` boolean — True if drive is solid-state.
    - `product` string — Drive model/product name.
    - `raidController` DeviceHardwareRaidController
      - `product` string — RAID controller model/product name.
      - `vendor` string — RAID controller vendor.
    - `serials` string[] — Drive serial numbers.
    - `size` string — Drive capacity in bytes.
    - `type` string — Drive type: NVMe, SSD, or HDD.
    - `unitCapacity` string — Human-readable capacity (base 1024).
  - `inRaidArray` boolean — True if any drives on this device are members of a RAID virtual disk.
  - `memorySlotsPopulated` integer — Number of populated RAM slots.
  - `memorySticks` DeviceHardwareMemoryStick[]
    - `capacity` string — Stick capacity in bytes.
    - `capacityStr` string — Human-readable capacity.
    - `description` string — LSHW description of the module.
  - `virtualDisks` DeviceHardwareVirtualDisk[] — Virtual disks exposed by RAID controllers on this device.
    - `raidType` string — RAID level (e.g. RAID1, RAID5).
    - `size` string — Virtual disk capacity in bytes.
    - `unitCapacity` string — Human-readable capacity (base 1024).

## Other responses

- `403` — You have not been granted permission to complete this action. Please contact your account manager to grant the proper permission.
- `404` — Device or hardware report not found

---

[API](https://skmtc.net/hivelocity/apis/hivelocity-api.md) · [All operations](https://skmtc.net/hivelocity/apis/hivelocity-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hivelocity/hivelocity-api/revisions/ee6b717b5015/schema)
