Detailed information for
resources
balenaCloud API Resources
Note: We recently renamed applications to fleets and are in the process of updating our API resources. Application resources continue to function correctly and can be used to work with fleets. Find out more about the changes here.
Available fields
id
supervisor_version
is_for__device_type
image_name
Examples
Get all supervisor releases for a device type by device type ID
curl -X GET \
"https://api.balena-cloud.com/v6/supervisor_release?\$filter=is_for__device_type%20eq%20'<DEVICE TYPE ID>'" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <AUTH_TOKEN>"
Get all supervisor releases for a device type by device type slug
curl -X GET \
"https://api.balena-cloud.com/v6/supervisor_release?\$filter=is_for__device_type/any(dt:dt/slug%20eq%20%27<DEVICE TYPE SLUG>%27)" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <AUTH_TOKEN>"
Get a specific supervisor release version for a device type
curl -X GET \
"https://api.balena-cloud.com/v6/supervisor_release?\$filter=(is_for__device_type/any(dt:dt/slug%20eq%20%27<DEVICE TYPE SLUG>%27))%20and%20(supervisor_version%20eq%20%27v<SUPERVISOR VERSION>%27)" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <AUTH_TOKEN>"