- š 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 ISOs
GET
https://api.vpsbg.eu/v1/isos
ISO
All ISO files are automatically deleted 48 hours after the download is completed.
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
page
integerĀ
optional
per_page
integerĀ
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 --request GET 'https://api.vpsbg.eu/v1/isos?page&per_page' \
--header 'Accept;'
Responses
š¢200List of ISO files
application/json
Body
data
array[objectĀ (ISO) {7}]Ā
required
id
integerĀ
required
status
stringĀ
required
Example:
downloaded
name
stringĀ
required
Example:
AlmaLinux-9.5-x86_64-boot.iso
size
integerĀ
required
downloaded
integerĀ
required
created_at
stringĀ
required
Example:
2025-02-03T10:58:19.000000Z
deletion_at
stringĀ
required
links
objectĀ
required
first
stringĀ
required
last
stringĀ
required
prev
nullĀ
required
next
nullĀ
required
meta
objectĀ
required
current_page
integerĀ
required
from
integerĀ
required
last_page
integerĀ
required
links
arrayĀ [object {3}]Ā
required
path
stringĀ
required
per_page
integerĀ
required
to
integerĀ
required
total
integerĀ
required
Example
{
"data": [
{
"id": 1,
"status": "downloaded",
"name": "AlmaLinux-9.5-x86_64-boot.iso",
"size": 1111998464,
"downloaded": 1111998464,
"created_at": "2025-02-03T10:58:19.000000Z",
"deletion_at": "2025-02-05T10:58:19.000000Z"
}
],
"links": {
"first": "https://api.vpsbg.eu/v1/isos?page=1",
"last": "https://api.vpsbg.eu/v1/isos?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://api.vpsbg.eu/v1/isos?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://api.vpsbg.eu/v1/isos",
"per_page": 20,
"to": 1,
"total": 1
}
}
š“500Server Error
Modified atĀ 2025-02-03 14:30:04