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>"
}Retrieve all volumes in your project
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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?