Containers
Get a compose file
This endpoint gets details about a compose file.
curl --request GET https://api.airbotics.io/compose-files/robot-app-v1 \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
{
"id": "robot-app-v1",
"name": "Robot application",
"content": {
"services": {
"hello": {
"image": "hello-world"
}
}
},
"created_at": "2023-07-17T13:27:05.636Z"
}
Path parameters
id
string
requiredThe ID of the compose file.
curl --request GET https://api.airbotics.io/compose-files/robot-app-v1 \
--header 'content-type: application/json' \
--header 'air-api-key: <token>'
{
"id": "robot-app-v1",
"name": "Robot application",
"content": {
"services": {
"hello": {
"image": "hello-world"
}
}
},
"created_at": "2023-07-17T13:27:05.636Z"
}