GET
/
v1
/
apps
/
backups
All Application Backups
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"
        }
      ]
    }
  ]
}

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
array
An array of objects, each representing an application and its associated backups.
{
  "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 Responses

status
string
Indicates whether the call was successful. error if not successful.
code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated or lacks sufficient permissions.
{
  "status": "error",
  "code": "UNAUTHORIZED"
}