List volumes
GET/volumes
Responses
200 OKOK
VolumeListResponse
volumesarray | null
items
Volume
attached_tostringcreated_atstringdate-timehost_idstringnamestringsize_bytesintegerint64501 Not Implemented
ErrorResponse
errorstringAuthentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.Request
▍GET/volumes
curl '/volumes'const response = await fetch("/volumes", {
method: "GET",
});
const data = await response.json();import requests
response = requests.get(
"/volumes",
)
data = response.json()Response
200 OK
{
"volumes": [
{
"attached_to": "string",
"created_at": "2026-01-02T15:04:05Z",
"host_id": "string",
"name": "string",
"size_bytes": 0
}
]
}