Get all supervisor releases for a specific cpu architecture by slug (eg amd64/rpi/armv7hf/aarch64)
get
List Supervisor releases Resource Fields
Field
id
raw_version
GET /v7/release
To request a list of the supported supervisor releases for a particular cpu architecture, the CPU_ARCHITECTURE_SLUG parameter is required. Even though this query only selects the id and raw_version fields, you can additionally specify any of the fields found in the release resource. The Authorization header is optional.
Usage Variations
Get all supervisor releases for a specific cpu architecture by ID
GET /v7/release?$select=id,raw_version&$filter=(status eq 'success') and (is_final eq true) and (is_invalidated eq false) and (semver_major gt 0) and (belongs_to__application/any(a:(startswith(a/slug,'balena_os%2F') and endswith(a/slug,'-supervisor')) and ((a/is_public eq true) and (a/is_host eq false) and (a/is_for__device_type/any(dt:dt/is_of__cpu_architecture eq <CPU_ARCHITECTURE_ID>)))))&$orderby=semver_major desc,semver_minor desc,semver_patch desc,revision desc
Get a specific supervisor release version for a specific cpu architecture
GET /v7/release?$select=id,raw_version&$filter=(status eq 'success') and (is_final eq true) and (is_invalidated eq false) and (semver_major gt 0) and (belongs_to__application/any(a:(startswith(a/slug,'balena_os%2F') and endswith(a/slug,'-supervisor')) and ((a/is_public eq true) and (a/is_host eq false) and (a/is_for__device_type/any(dt:dt/is_of__cpu_architecture/any(c:c/slug eq '<CPU_ARCHITECTURE_SLUG>')))))) and (raw_version eq '<VERSION>')&$orderby=semver_major desc,semver_minor desc,semver_patch desc,revision desc
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.