Skip to main content
GET
/
deployments
/
storage
/
volumes
cURL
curl -X GET \
      -H "Authorization: Bearer $TOGETHER_API_KEY" \
      https://api.together.ai/v1/deployments/storage/volumes
{
  "data": [
    {
      "content": {
        "source_prefix": "models/",
        "type": "files"
      },
      "created_at": "<string>",
      "id": "<string>",
      "name": "<string>",
      "object": "<string>",
      "type": "readOnly",
      "updated_at": "<string>"
    }
  ],
  "object": "<string>"
}

Authorizations

Authorization
string
header
default:default
required

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

Response

List of volumes

data
object[]

Data is the array of volume items

object
string

Object is the type identifier for this response (always "list")