curl -X GET \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
https://api.together.ai/v1/deployments{
"object": "list",
"data": [
{
"id": "dep_abc123",
"name": "my-video-model",
"status": "Ready",
"gpu_type": "h100-80gb",
"gpu_count": 2,
"ready_replicas": 3,
"desired_replicas": 3,
"min_replicas": 1,
"max_replicas": 20
}
]
}Get a list of all deployments in your project
curl -X GET \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
https://api.together.ai/v1/deployments{
"object": "list",
"data": [
{
"id": "dep_abc123",
"name": "my-video-model",
"status": "Ready",
"gpu_type": "h100-80gb",
"gpu_count": 2,
"ready_replicas": 3,
"desired_replicas": 3,
"min_replicas": 1,
"max_replicas": 20
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?