Skip to main content
GET
/
v2
/
volumes
/
{volumeId}
Get Volume
curl --request GET \
  --url https://api.tusky.io/v2/volumes/{volumeId}
{
  "id": "<string>",
  "name": "<string>",
  "encrypted": true,
  "createdAt": "<string>",
  "updatedAt": "<string>"
}
Retrieve details of a specific volume by its ID.

Path Parameters

volumeId
string
required
The unique identifier of the volume.

Response

id
string
Unique identifier for the volume.
name
string
The name of the volume.
encrypted
boolean
Whether the volume is encrypted.
createdAt
string
ISO 8601 timestamp of when the volume was created.
updatedAt
string
ISO 8601 timestamp of when the volume was last updated.

Example

curl https://api.tusky.io/v2/volumes/vol_abc123def456 \
  -H "Api-Key: YOUR_API_KEY"

Response

{
  "id": "vol_abc123def456",
  "name": "My First Volume",
  "encrypted": false,
  "createdAt": "2025-07-01T12:00:00.000Z",
  "updatedAt": "2025-07-01T12:00:00.000Z"
}