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

Authorizations

Authorization
string
header
default:default
required

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

Body

application/json

Volume configuration

content
object
required

Content specifies the content configuration for this volume

name
string
required

Name is the unique identifier for the volume within the project

type
enum<string>
required

Type is the volume type (currently only "readOnly" is supported)

Available options:
readOnly

Response

Volume created successfully

content
object

Content specifies the content that will be preloaded to this volume

created_at
string

CreatedAt is the ISO8601 timestamp when this volume was created

id
string

ID is the unique identifier for this volume

name
string

Name is the name of the volume

object
string

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

type
enum<string>

Type is the volume type (e.g., "readOnly")

Available options:
readOnly
updated_at
string

UpdatedAt is the ISO8601 timestamp when this volume was last updated