[BETA] List Deployments

GET /ai/deployment

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object
    • updated-at string(date-time)

      Update time

    • deployment-url string

      Deployment URL (nullable)

    • model-id string(uuid)

      Associated model ID

    • service-level string

      Service level

      Minimum length is 1.

    • name string

      Deployment name

      Minimum length is 1.

    • endpoint-url string

      Endpoint URL (nullable)

    • instance-type string

      Instance type

      Minimum length is 1.

    • organization-id string(uuid)

      Organization ID

    • status string

      Deployment status

    • id string(uuid)

      Deployment ID

    • replicas integer(int64)

      Number of replicas (>=0)

      Minimum value is 0.

    • created-at string(date-time)

      Creation time

GET /ai/deployment
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/ai/deployment'
Response examples (200)
[
  {
    "updated-at": "2025-05-04T09:42:00Z",
    "deployment-url": "string",
    "model-id": "string",
    "service-level": "string",
    "name": "string",
    "endpoint-url": "string",
    "instance-type": "string",
    "organization-id": "string",
    "status": "string",
    "id": "string",
    "replicas": 42,
    "created-at": "2025-05-04T09:42:00Z"
  }
]