curl --request GET \
--url https://api.baseten.co/v1/chains/{chain_id}/deployments \
--header "Authorization: Api-Key $BASETEN_API_KEY"
{
  "deployments": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "chain_id": "<string>",
      "environment": "<string>",
      "chainlets": [
        {
          "id": "<string>",
          "name": "<string>",
          "autoscaling_settings": {
            "min_replica": 123,
            "max_replica": 123,
            "autoscaling_window": 123,
            "scale_down_delay": 123,
            "concurrency_target": 123
          },
          "instance_type_name": "<string>",
          "active_replica_count": 123,
          "status": "BUILDING"
        }
      ],
      "status": "BUILDING"
    }
  ]
}

Authorizations

Authorization
string
header
required

You must specify the scheme 'Api-Key' in the Authorization header. For example, Authorization: Api-Key <Your_Api_Key>

Path Parameters

chain_id
string
required

Response

200 - application/json

A list of chain deployments.

deployments
object[]
required

A list of chain deployments

A deployment of a chain.