Catalog

List managed Kubernetes pricing

Returns worker node plans plus HA control plane and storage node pricing. The standard control plane is free — ha_pricing is the optional highly available control plane.

get/api/v1/public/pricing/kubernetes

Response

Managed Kubernetes pricing

successboolean

Example response

{
  "success": true,
  "plans": [
    {
      "id": 11,
      "name": "K8s Starter",
      "vcpu": 1,
      "memory_gib": 2,
      "ssd_gib": 25,
      "node_class": "shared",
      "price_per_hour": 0.013875,
      "price_per_month": 9.99,
      "total_price": 9.99,
      "region": "us-east"
    }
  ],
  "ha_pricing": {
    "price_per_hour": 0.0411,
    "price_per_month": 30
  },
  "storage_pricing": {
    "per_gb_month": 0.08,
    "per_gb_hour": 0.00010959,
    "min_gb": 100,
    "max_gb": 1000,
    "default_gb": 100
  }
}

Changes