[BETA] Get Deployment

GET /ai/deployment/{id}

Path parameters

  • id string(uuid) Required

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object
    • gpu-count integer(int64)

      Number of GPUs

      Minimum value is 0.

    • updated-at string(date-time)

      Update time

    • deployment-url string

      Deployment URL (nullable)

    • service-level string

      Service level

      Minimum length is 1.

    • name string

      Deployment name

      Minimum length is 1.

    • gpu-type string

      GPU type family

      Minimum length is 1.

    • status string

      Deployment status

      Values are ready, creating, error, or deploying.

    • id string(uuid)

      Deployment ID

    • replicas integer(int64)

      Number of replicas (>=0)

      Minimum value is 0.

    • created-at string(date-time)

      Creation time

    • model object
      Hide model attributes Show model attributes object
      • id string(uuid)

        Associated model ID

      • name string

        Associated model name

        Minimum length is 1.

  • 404 application/json

    404

    Hide response attribute Show response attribute object
    • error string

      Error description

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