Core Resources
Plans
Serverista offers dedicated VPS and Servers, represented as configurable plans with resources, pricing, and regions.
Get list of plans
Returns a list of all available plans
Accepts: application/json
Returns: application/json
Parameters
no parameters
Response
array of PlanReference Type: Plan
price
number
Monthly Price of the plan
example: 29.99
example: 29.99
type
string
Type of the plan (VPS or Dedicated Server)
example: VPS
enum: VPS,Dedicated Server
example: VPS
enum: VPS,Dedicated Server
data
array of KeyValue
Reference Type: KeyValue
Array of key val JSON data associated with the plan
example: {"name":"OS", "val": "Ubuntu 24.04 LTS"}, {}
Array of key val JSON data associated with the plan
example: {"name":"OS", "val": "Ubuntu 24.04 LTS"}, {}
description
string
Description of the plan
example: Suitable for medium businesses
example: Suitable for medium businesses
id
integer
Unique plan ID
example: 1
example: 1
name
string
Name of the plan
example: Dedicated VPS 1
example: Dedicated VPS 1
GET /v1/plans
curl -X GET https://api.serverista.com/v1/plans \
-H "Authorization: ApiKey YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d ''
Response
[
{
"data": [
{
"...": null
}
],
"description": "example_description",
"id": 123,
"name": "example_name",
"price": 123.45,
"type": "example_type"
}
]