Skip to main content
GET
/
sites
/
{siteId}
/
backups
List Backups for a Site
curl --request GET \
  --url https://api.altostrat.io/sites/{siteId}/backups \
  --header 'Authorization: Bearer <token>'
[
  {
    "filename": "1732567800.rsc",
    "size": "12.3KB",
    "date": "29/10/2025",
    "time": "12:50:00",
    "created_at": "2025-10-29T12:50:00.000000Z"
  }
]

Authorizations

Authorization
string
header
required

A bearer token is required for all API requests. Obtain a token via the Altostrat Authentication API.

Path Parameters

siteId
string<uuid>
required

The unique identifier for the site.

Example:

"a1b2c3d4-e5f6-7890-1234-567890abcdef"

Response

A successful response returning a list of backup file metadata.

filename
string

The unique filename of the backup file, serving as its ID.

Example:

"1732567800.rsc"

size
string

The human-readable size of the backup file.

Example:

"12.3KB"

date
string

The date the backup was created, formatted according to the user's preferences.

Example:

"29/10/2025"

time
string

The time the backup was created, formatted according to the user's preferences and timezone.

Example:

"12:50:00"

created_at
string<date-time>

The full ISO 8601 timestamp of when the backup was created.

Example:

"2025-10-29T12:50:00.000000Z"