curl --request GET \
--url https://api.vertracloud.app/v1/apps/backups \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"response": [
{
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"app_name": "v111d4af8cd74272a284831fbae14a8v",
"backups": [
{
"id": "backup123",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "10.24 MB",
"date": "2025-08-14T19:58:00Z"
},
{
"id": "backup456",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "15.36 MB",
"date": "2025-08-13T12:00:00Z"
}
]
},
{
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"app_name": "v222e5bf9de84383b395942fcbf25b9w",
"backups": [
{
"id": "backup789",
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"author_id": "1085944713435160717",
"size": "20.48 MB",
"date": "2025-08-12T10:00:00Z"
}
]
}
]
}
Retrieves all backups for applications owned by the authenticated user, grouped by application.
curl --request GET \
--url https://api.vertracloud.app/v1/apps/backups \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"response": [
{
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"app_name": "v111d4af8cd74272a284831fbae14a8v",
"backups": [
{
"id": "backup123",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "10.24 MB",
"date": "2025-08-14T19:58:00Z"
},
{
"id": "backup456",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "15.36 MB",
"date": "2025-08-13T12:00:00Z"
}
]
},
{
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"app_name": "v222e5bf9de84383b395942fcbf25b9w",
"backups": [
{
"id": "backup789",
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"author_id": "1085944713435160717",
"size": "20.48 MB",
"date": "2025-08-12T10:00:00Z"
}
]
}
]
}
success
if successful, error
if not.Show Toggle object
{
"status": "success",
"response": [
{
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"app_name": "v111d4af8cd74272a284831fbae14a8v",
"backups": [
{
"id": "backup123",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "10.24 MB",
"date": "2025-08-14T19:58:00Z"
},
{
"id": "backup456",
"app_id": "v111d4af8cd74272a284831fbae14a8v",
"author_id": "1085944713435160717",
"size": "15.36 MB",
"date": "2025-08-13T12:00:00Z"
}
]
},
{
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"app_name": "v222e5bf9de84383b395942fcbf25b9w",
"backups": [
{
"id": "backup789",
"app_id": "v222e5bf9de84383b395942fcbf25b9w",
"author_id": "1085944713435160717",
"size": "20.48 MB",
"date": "2025-08-12T10:00:00Z"
}
]
}
]
}
error
if not successful.UNAUTHORIZED
: The user is not authenticated or lacks sufficient permissions.{
"status": "error",
"code": "UNAUTHORIZED"
}