Skip to main content
GET
/
compute
/
containers
/
{collection_topic}
/
{container_topic}
Get a container
curl --request GET \
  --url https://api.quiva.ai/compute/containers/{collection_topic}/{container_topic} \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "description": "A container for my application",
    "name": "my-container",
    "runtime": "docker",
    "subject": "compute.my-namespace.container.123456789",
    "type": "created",
    "modified": 1714378974,
    "compute_asset": {
      "collection_topic": "my-namespace",
      "service": "123456789",
      "runtime": "docker",
      "assets": [
        {
          "asset_name": "Dockerfile",
          "asset_type": "file",
          "asset_value": "RlJPTSBub2RlOjE4CldPUktESVIgL2FwcApDT1BZIC4gLgpSVU4gbnBtIGluc3RhbGwKRVhQT1NFIDgwODAKQ01EIFsibm9kZSIsICJpbmRleC5qcyJdCg==",
          "link": false
        }
      ],
      "read_only_fs": false
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

collection_topic
string
required

Collection topic identifier

container_topic
string
required

Container topic identifier

Response

Container details

body
object