- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plansGET
- List serversGET
- Server statusGET
- Get a serverGET
- Server metricsGET
- BandwidthGET
- Deploy new serverPOST
- Start a serverPOST
- Restart a serverPOST
- Stop a serverPOST
- Power offPOST
- Cancel serverPOST
- Undo cancel requestDELETE
- Change passwordPUT
- Update hostnamePUT
- Update SSH KeysPATCH
- Modify ISOsPOST
- RestorePOST
- Renew serverPOST
- Reinstall ServerPOST
- Change Primary IPPOST
- Calculate renew amountPOST
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
List available addons
GET
https://api.vpsbg.eu/v1/servers/{server_id}/addons
Addons
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
server_id
stringÂ
required
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/servers//addons' \
--header 'Accept;'
Responses
🟢200Success
application/json
Body
data
array [object {7}]Â
required
key
stringÂ
required
price
numberÂ
required
price_with_vat
numberÂ
required
price_until_expiry
numberÂ
required
price_until_expiry_with_vat
numberÂ
required
scale_price
numberÂ
optional
scale_price_with_vat
numberÂ
optional
Example
{
"data": [
{
"key": "cpanel-admin-5",
"price": 25,
"price_with_vat": 30,
"price_until_expiry": 100,
"price_until_expiry_with_vat": 120
},
{
"key": "cpanel-premier-100",
"price": 70,
"price_with_vat": 84,
"price_until_expiry": 280,
"price_until_expiry_with_vat": 336
},
{
"key": "cpanel-plus-50",
"price": 50,
"price_with_vat": 60,
"price_until_expiry": 200,
"price_until_expiry_with_vat": 240
},
{
"key": "backups",
"price": 5,
"price_with_vat": 6,
"price_until_expiry": 20,
"price_until_expiry_with_vat": 24
},
{
"key": "100mbps-unmetered",
"price": 50,
"price_with_vat": 60,
"price_until_expiry": 250,
"price_until_expiry_with_vat": 300
},
{
"key": "1gbps-unmetered",
"price": 450,
"price_with_vat": 540,
"price_until_expiry": 2250,
"price_until_expiry_with_vat": 2700
},
{
"key": "windows-server-license",
"price": 10,
"price_with_vat": 12,
"price_until_expiry": 40,
"price_until_expiry_with_vat": 48
}
]
}
🔴500Server Error
🟠422Validation error (specified in the response)
Modified at 2025-03-10 09:48:40