List available backups for the VPS.
Request
Add parameter in header API-key
Example:API-key: ********************
or
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/vps/12345/backups' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"details": {
"backups": [
{
"type": "incremental",
"date_internal": "1773420875",
"key": 33806,
"date": "2026-03-13 17:54",
"size": 1.87
},
{
"type": "manual",
"date_internal": "20260313",
"key": 33776,
"date": "2026-03-13 15:43",
"size": 1.29
}
],
"count": 2
},
"status": 200,
"status_description": "Request successful."
}
Modified at 2026-04-09 10:11:26