Path parameters

  • id string(uuid) Required

Responses

  • 200 application/json

    200

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

      Model ID

    • name string

      Model name

      Minimum length is 1.

    • status string

      Model status

      Values are ready, creating, downloading, or error.

    • model-size integer(int64)

      Model size (nullable)

      Minimum value is 0.

    • created-at string(date-time)

      Creation time

    • updated-at string(date-time)

      Update time

  • 404 application/json

    404

    Hide response attribute Show response attribute object
    • error string

      Error description

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