[BETA] List Models

View as markdown
GET /ai/model

Responses

  • 200 application/json

    200

    Hide response attribute Show response attribute object
    • models array[object]

      AI model

      Hide models attributes Show models 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

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