Skip to main content
GET
/
deployments
cURL
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
    }
  ]
}

Authorizations

Authorization
string
header
default:default
required

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

Response

List of deployments

data
object[]

Data is the array of deployment items

object
string

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