Skip to main content
GET
/
api
/
v1
/
public
/
pricing
/
vm
List VM pricing plans
curl --request GET \
  --url https://api.raffcomputing.com/api/v1/public/pricing/vm
{
  "success": true,
  "plans": [
    {
      "id": 3,
      "vcpu": 2,
      "memory_gib": 4,
      "ssd_gib": 80,
      "transfer_gib": 4000,
      "price_per_hour": 0.027764,
      "monthly_price": 20,
      "yearly_price": 200,
      "twenty_four_month_price": 400,
      "vm_type": "standard",
      "region": "us-east"
    }
  ]
}

Query Parameters

type
enum<string>

Filter by VM type

Available options:
standard,
premium
region
enum<string>

Filter by region

Available options:
us-east

Response

List of VM pricing plans

success
boolean
Example:

true

plans
object[]