Skip to main content
GET
/
storage
/
volumes
Typescript (SDK)
import { Latitudesh } from "latitudesh-typescript-sdk";

const latitudesh = new Latitudesh({
  bearer: process.env["LATITUDESH_BEARER"] ?? "",
});

async function run() {
  const result = await latitudesh.storage.getStorageVolumes({
    filterProject: "proj_WeGoqA5AqP7nz",
  });

  console.log(result);
}

run();
{
  "data": [
    {
      "id": "vol_RLYV8DZ2D5QoE",
      "type": "volumes",
      "attributes": {
        "name": "Incredible Paper Computer",
        "size_in_gb": 1500,
        "created_at": "2026-01-14T14:57:08.628Z",
        "namespace_id": "1",
        "connector_id": "nqn.2001-07.com.ceph:1757602476548",
        "initiators": [
          {
            "nqn": "nqn.2014-08.org.nvmexpress:uuid:ae717767-c0fa-56f7-ab4b-5c426b0c553f"
          }
        ],
        "project": {
          "id": "proj_WeGoqA5AqP7nz",
          "name": "Gorgeous Concrete Clock",
          "slug": "gorgeous-concrete-clock",
          "description": "Small Wooden Shirt",
          "billing_type": "Normal",
          "billing_method": "Normal",
          "bandwidth_alert": false,
          "environment": null,
          "billing": {
            "subscription_id": null,
            "type": "Normal",
            "method": "Normal"
          },
          "stats": {
            "databases": 0,
            "ip_addresses": 0,
            "prefixes": 0,
            "servers": 0,
            "storages": 1,
            "virtual_machines": 0,
            "vlans": 0
          }
        },
        "team": {
          "id": "team_nYRYZR4lwzSJpMxzmrnKSe8P79E",
          "name": "614 Team",
          "slug": "614-team",
          "description": "614 Team",
          "address": "Suite 444 21815 Angel Falls, North Jarvis, LA 68902",
          "status": "verified",
          "currency": {
            "id": "cur_AW6Q2D9lqKLpr",
            "code": "BRL",
            "name": "Brazilian Real",
            "currency_id": null
          }
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

filter[project]
string

The project ID or Slug to filter by

Response

200 - application/vnd.api+json

Success

data
object[]