- 👋 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 plans
GET
https://api.vpsbg.eu/v1/servers/plans
Servers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
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/plans' \
--header 'Accept;'
Responses
🟢200Live information regarding your server - current resource usage, state and additional information.
application/json
Body
data
object (Server Plan)Â
required
id
integerÂ
optional
Example:
104
type
stringÂ
optional
Example:
cloud-vps
key
stringÂ
optional
name
stringÂ
optional
Example:
cloud-vps-2gb
vcpus
integerÂ
optional
Example:
2
memory
integerÂ
optional
Example:
2
disk
integerÂ
optional
Example:
50
bandwidth
integerÂ
optional
Example:
5
minimum_billing_cycle
integerÂ
optional
Example:
1
plan_with_more_disk
integerÂ
optional
plan_with_more_memory
integerÂ
optional
available
booleanÂ
optional
price
numberÂ
optional
Example:
100
price_with_vat
numberÂ
optional
Example:
120
Example
{
"data": [
{
"id": 1614,
"type": "vds",
"key": "vds-8gb",
"name": "VDS 8 GB",
"vcpus": 2,
"dedicated_cpu": true,
"memory": 8,
"disk": 50,
"bandwidth": 10,
"minimum_billing_cycle": 1,
"plan_with_more_disk": 1613,
"plan_with_more_memory": 1615,
"available": true,
"price": 110,
"price_with_vat": 132
},
{
"id": 1613,
"type": "vds",
"key": "vds-8gb-s",
"name": "VDS 8 GB 2x SSD",
"vcpus": 2,
"dedicated_cpu": true,
"memory": 8,
"disk": 100,
"bandwidth": 10,
"minimum_billing_cycle": 1,
"plan_with_more_disk": null,
"plan_with_more_memory": 1563,
"available": true,
"price": 125,
"price_with_vat": 150
}
]
}
🔴500Server Error
Modified at 2025-03-25 12:22:56