v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-06-1811583196.1 KB
Catalog

List VM pricing plans

Returns VM pricing plans. Use the plan id as pricing_id when creating a VM.

get/api/v1/public/pricing/vm

Query parameters

type'standard' | 'premium'

Filter by VM type

region'us-east'

Filter by region

Response

List of VM pricing plans

successboolean

Example response

{
  "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"
    }
  ]
}