Skip to main content
GET
/
compute
/
clusters
/
storage
/
volumes
Together AI SDK (v2)
from together import Together
client = Together()

volumes = client.beta.clusters.storage.list()
print(volumes)
{
  "volumes": [
    {
      "volume_id": "<string>",
      "volume_name": "<string>",
      "size_tib": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.together.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

project_id
string

Optional UMS project ID to filter volumes by. When set, only volumes belonging to this project are returned. The caller must be a member of the project; otherwise the result set will be empty.

Response

200 - application/json

OK

volumes
object[]
required