Skip to main content
GET
/
servers
/
{server}
/
backups
List backups for a server
curl --request GET \
  --url https://console.wenium.com/api/servers/{server}/backups \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": [
    {
      "id": "backup-1",
      "date": "2026-07-03T00:00:00Z",
      "size": 10737418240
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

server
integer
required

Response

200 - application/json

Server backups

status
boolean
Example:

true

data
object[]