List volumes
/volumes
List volumes
Returns
id: string
Unique identifier
created_at: string
Creation timestamp (RFC3339)
formatdate-time
name: string
Volume name
size_gb: number
Size in gigabytes
List volumes
curl http://localhost:8080/volumes \
-H "Authorization: Bearer $HYPEMAN_API_KEY"
[
{
"id": "vol-data-1",
"created_at": "2025-01-15T09:00:00Z",
"name": "my-data-volume",
"size_gb": 10,
"attachments": [
{
"instance_id": "inst-abc123",
"mount_path": "/mnt/data",
"readonly": false
}
]
}
]
Returns Examples
[
{
"id": "vol-data-1",
"created_at": "2025-01-15T09:00:00Z",
"name": "my-data-volume",
"size_gb": 10,
"attachments": [
{
"instance_id": "inst-abc123",
"mount_path": "/mnt/data",
"readonly": false
}
]
}
]