Skip to main content
GET
/
compute
/
containers
Get all containers
curl --request GET \
  --url https://api.quiva.ai/compute/containers \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "description": "A container for my application",
        "name": "my-container",
        "runtime": "docker",
        "subject": "ms.compute.my-namespace.container.123456789",
        "type": "created",
        "modified": 1714378974
      }
    ],
    "results_total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of containers

body
object