githubEdit

boxContainer Images

List available Spice runtime versions

Container images are the Spice runtime versions available for deployments. Use this endpoint to discover available versions and select the appropriate image tag for your app.

List Container Images

GET https://api.spice.ai/v1/container-images

Returns available Spice runtime container images.

Required scope: apps:read

Query Parameters

Parameter
Type
Default
Description

channel

string

stable

Release channel: stable or enterprise

Response

{
  "images": [
    {
      "name": "spiceai/spiceai:1.5.0-models",
      "tag": "1.5.0-models",
      "channel": "stable"
    },
    {
      "name": "spiceai/spiceai:1.4.0-models",
      "tag": "1.4.0-models",
      "channel": "stable"
    }
  ],
  "default": "1.5.0-models"
}

Response Fields:

Field
Type
Description

name

string

Full container image name with tag

tag

string

Image tag (use this in app config or deployments)

channel

string

Release channel (stable or enterprise)

default

string

The default image tag for new apps

Examples

cURL:

Filter by channel:

Python:

Node.js:

Using Container Images

When creating or updating an app, use the tag field to specify which runtime version to use:

Terraform:

See also:

Last updated

Was this helpful?