- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
List backups
GET
https://api.vpsbg.eu/v1/backups
Backups
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
integerÂ
optional
filter[date]
stringÂ
optional
filter[server_id]
integerÂ
optional
filter[size]
integerÂ
optional
sort
stringÂ
optional
Header Params
Accept
stringÂ
required
Default:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.vpsbg.eu/v1/backups?page&filter[date]&filter[server_id]&filter[size]&sort' \
--header 'Accept;'
Responses
🟢200List of all backups.
application/json
Body
data
array[object (Backup) {7}]Â
optional
id
integerÂ
optional
server_id
integerÂ
optional
server_hostname
stringÂ
optional
Example:
ubuntu-2gb
server_ip
stringÂ
optional
Example:
87.120.37.0
name
stringÂ
optional
created_at
string <date-time>
optional
size
integerÂ
optional
links
objectÂ
optional
first
stringÂ
optional
last
stringÂ
optional
prev
nullÂ
optional
next
nullÂ
optional
meta
objectÂ
optional
current_page
integerÂ
optional
from
integerÂ
optional
last_page
integerÂ
optional
links
array [object {3}]Â
optional
path
stringÂ
optional
per_page
integerÂ
optional
to
integerÂ
optional
total
integerÂ
optional
Example
{
"data": [
{
"id": 77,
"server_id": 2478,
"server_hostname": "ubuntu-2gb",
"server_ip": "87.120.37.0",
"name": "71_ubuntu-2gb_2023_06_19-19_34_40.qcow2.gz",
"created_at": "2023-06-19T22:36:35+03:00",
"size": 50
},
{
"id": 73,
"server_id": 2448,
"server_hostname": "ubuntu-2gb",
"server_ip": "87.120.37.0",
"name": "40_ubuntu-2gb_2023_06_10-14_42_22.qcow2.gz",
"created_at": "2023-06-12T10:52:53+03:00",
"size": 50
}
],
"links": {
"first": "https://api.vpsbg.eu/v1/backups?page=1",
"last": "https://api.vpsbg.eu/v1/backups?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "pagination.previous",
"active": false
},
{
"url": "https://api.vpsbg.eu/v1/backups?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "pagination.next",
"active": false
}
],
"path": "https://api.vpsbg.eu/v1/backups",
"per_page": 50,
"to": 6,
"total": 6
}
}
🔴500Server Error
Modified at 2025-03-21 10:04:54