Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.blaxel.ai/v0/images \
--header 'Authorization: Bearer <token>'[
{
"metadata": {
"createdAt": "<string>",
"displayName": "<string>",
"lastDeployedAt": "<string>",
"name": "<string>",
"resourceType": "<string>",
"updatedAt": "<string>",
"workspace": "<string>"
},
"spec": {
"size": 123,
"tags": [
{
"createdAt": "<string>",
"name": "<string>",
"size": 123,
"updatedAt": "<string>"
}
]
}
}
]Returns a list of all images in the workspace grouped by repository with tags.
curl --request GET \
--url https://api.blaxel.ai/v0/images \
--header 'Authorization: Bearer <token>'[
{
"metadata": {
"createdAt": "<string>",
"displayName": "<string>",
"lastDeployedAt": "<string>",
"name": "<string>",
"resourceType": "<string>",
"updatedAt": "<string>",
"workspace": "<string>"
},
"spec": {
"size": 123,
"tags": [
{
"createdAt": "<string>",
"name": "<string>",
"size": 123,
"updatedAt": "<string>"
}
]
}
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?