List a volume's backups
GET/volumes/{name}/backups
path parameters
object
namestringrequiredVolume name ([a-z0-9][a-z0-9-]*).
Responses
200 OKOK
BackupListResponse
backupsarray | null
items
Backup
consistencystringcreated_atstringdate-timehost_idstringidstringsize_bytesintegerint64source_volumestring501 Not Implemented
ErrorResponse
errorstringAuthentication
bearerAuthHTTP bearer. Daemon API key. Omit on a keyless loopback daemon.Request
▍GET/volumes/{name}/backups
curl '/volumes/{name}/backups'const response = await fetch("/volumes/{name}/backups", {
method: "GET",
});
const data = await response.json();import requests
response = requests.get(
"/volumes/{name}/backups",
)
data = response.json()Response
200 OK
{
"backups": [
{
"consistency": "string",
"created_at": "2026-01-02T15:04:05Z",
"host_id": "string",
"id": "string",
"size_bytes": 0,
"source_volume": "string"
}
]
}