Skip to main content
GET
/
snapshots
List snapshots across all servers
curl --request GET \
  --url https://console.wenium.com/api/snapshots \
  --header 'Authorization: Bearer <token>'
[
  {
    "server_id": 10,
    "hostname": "web-server-01",
    "id": "snapshot-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.

Response

200 - application/json

Global snapshots list

server_id
integer
Example:

10

hostname
string
Example:

"web-server-01"

id
string
Example:

"snapshot-1"

date
string
Example:

"2026-07-03T00:00:00Z"

size
integer
Example:

10737418240