List plans
GET
https://api.vpsbg.eu/v1/plansThis endpoint returns all deployment plans you can use for new services.
Request
Request samples
Responses
List of all deployment plans.(200)
List of all deployment plans.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array[object (Plan) {14}]
optional
id
integer
optional
Example:
104
type
string
optional
The VDS servers have dedicated CPU cores. Cloud VPS is using shared CPU power.
Example:
cloud-vps
key
string
optional
name
string
optional
Example:
cloud-vps-2gb
vcpus
integer
optional
CPU cores limit. Dedicated, if it is a VDS product.
Example:
2
memory
integer
optional
RAM of the server.
Example:
2
disk
integer
optional
NVMe disk size limit in gigabytes.
Example:
50
bandwidth
integer
optional
Traffic limit in terabytes.
Example:
5
minimum_billing_cycle
integer
optional
The minimum billing period for which this plan can be purchased.
Example:
1
plan_with_more_disk
integer
optional
The same plan but with more disk (usually 2x).
plan_with_more_memory
integer
optional
The same plan but with more RAM (usually 2x).
available
boolean
optional
Whether in stock or not.
price
number
optional
Monthly price without VAT adjustments.
Example:
100
price_with_vat
number
optional
Monthly prices adjusted for your VAT when applicable; use a promo code when ordering servers for discounts, or one may be automatically applied during promotional periods for your billing cycle.
Example:
120
links
object
optional
first
string
optional
last
string
optional
prev
string | null
optional
next
string | 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
ExampleExample 1
{
"data": [
{
"id": 116,
"type": "vds",
"name": "vds-8gb",
"vcpus": 2,
"memory": 8,
"disk": 50,
"bandwidth": 10,
"available": false,
"price": 90
},
{
"id": 117,
"type": "vds",
"name": "vds-8gb-s",
"vcpus": 2,
"memory": 8,
"disk": 100,
"bandwidth": 10,
"available": false,
"price": 120
},
{
"id": 118,
"type": "vds",
"name": "vds-16gb",
"vcpus": 4,
"memory": 16,
"disk": 100,
"bandwidth": 20,
"available": false,
"price": 180
}
],
"links": {
"first": "https://api.vpsbg.eu/v1/plans?page=1",
"last": "https://api.vpsbg.eu/v1/plans?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/plans?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "pagination.next",
"active": false
}
],
"path": "https://api.vpsbg.eu/v1/plans",
"per_page": 50,
"to": 27,
"total": 27
}
}
Last modified: 3 months ago