/storage/statusGETGET /storage/status
Content-Type: application/json{
"status": 200,
"data": {
"capacity_bytes": 3513283248128,
"used_bytes": 0,
"remaining_bytes": 3513283248128,
"warning": {
"is_low": false
},
"readable": {
"capacity": "3.20TB",
"used": "0B",
"remaining": "3.20TB"
}
}
}capacity_bytes (number): Total storage capacity available, expressed in bytes.used_bytes (number): Amount of storage currently in use, expressed in bytes.remaining_bytes (number): Amount of storage remaining or free, expressed in bytes.warning.is_low (boolean): Indicates if the remaining storage is low (true) or sufficient (false).readable.capacity (string): Human-readable format of total storage capacity (e.g., "3.20TB").readable.used (string): Human-readable format of used storage (e.g., "0B").readable.remaining (string): Human-readable format of remaining/free storage (e.g., "3.20TB").