List all volume backups
GET/backups
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/backups
curl '/backups'const response = await fetch("/backups", {
method: "GET",
});
const data = await response.json();import requests
response = requests.get(
"/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"
}
]
}