[BETA] List Models

GET /ai/model

Responses

  • 200 application/json

    200

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

      Model ID

    • organization-id string(uuid)

      Organization ID

    • name string

      Model name

      Minimum length is 1.

    • status string

      Model status

    • 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)
[
  {
    "id": "string",
    "organization-id": "string",
    "name": "string",
    "status": "string",
    "model-size": 42,
    "created-at": "2025-05-04T09:42:00Z",
    "updated-at": "2025-05-04T09:42:00Z"
  }
]