> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rafftechnologies.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List 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.

<sub>Updated July 6, 2026</sub>


## OpenAPI

````yaml GET /api/v1/public/pricing/kubernetes
openapi: 3.0.3
info:
  title: Raff API
  description: >
    REST API for managing cloud infrastructure on Raff.


    ## Authentication

    Most endpoints require authentication via API key. Catalog endpoints under
    `/api/v1/public/` are open and require no authentication.


    ### API Key Authentication

    Include your API key in the `X-API-Key` header:
      ```
      curl -H "X-API-Key: YOUR_API_KEY" https://api.rafftechnologies.com/api/v1/vms
      ```

    ## Catalog

    Use the public catalog endpoints to discover available regions, OS
    templates, and pricing plans before creating resources:

    - `GET /api/v1/public/regions` — list available regions

    - `GET /api/v1/public/templates` — list OS templates (use the `id` as
    `template_id` when creating a VM)

    - `GET /api/v1/public/pricing/vm` — list VM pricing plans (use the `id` as
    `pricing_id` when creating a VM)

    - `GET /api/v1/public/pricing/volume` — volume storage pricing

    - `GET /api/v1/public/pricing/snapshot` — snapshot storage pricing

    - `GET /api/v1/public/pricing/backup` — backup storage pricing

    - `GET /api/v1/public/pricing/ip` — IP address pricing

    - `GET /api/v1/public/pricing/database` — managed database pricing (plans,
    high availability, read replicas, extra storage)

    - `GET /api/v1/public/pricing/kubernetes` — managed Kubernetes pricing
    (worker node plans, HA control plane, storage nodes)
  version: 1.0.0
  contact:
    name: Raff Technologies
    url: https://rafftechnologies.com
servers:
  - url: https://api.rafftechnologies.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Catalog
    description: >-
      Discover available regions, OS templates, and pricing plans. No
      authentication required.
  - name: Health
    description: Health check endpoints
  - name: Projects
    description: Organize resources into projects for billing and access control
  - name: Virtual Machines
  - name: Kubernetes
    description: >-
      Managed Kubernetes clusters — HA control planes, autoscaling node pools,
      kubeconfig access
  - name: Functions
    description: Deploy and manage serverless functions
  - name: Raff Apps
    description: >-
      Push-to-deploy web services, private services, workers, cron jobs, and
      one-off jobs on the Raff PaaS — with custom domains, environment
      variables, autoscaling, and per-second billing with spend caps
  - name: Managed Databases
    description: >-
      Fully managed PostgreSQL and Valkey databases with private VPC networking,
      automatic backups, and metrics
  - name: Networking
    description: >-
      Attach and detach VPCs, floating IPs, and security groups to VM network
      interfaces
  - name: Snapshots
    description: Point-in-time copies of VMs and volumes for quick rollback or cloning
  - name: Backups
    description: Scheduled and on-demand VM backups with restore capability
  - name: Backup Schedules
    description: Recurring daily or weekly backup schedules attached to a VM
  - name: SSH Keys
    description: Manage account-level SSH keys for VM provisioning
  - name: Members
    description: Account-level members — invite, list, update role, remove
  - name: Project Members
    description: Members of a specific project — same model as Members but project-scoped
  - name: Roles
    description: Custom roles bundling account or project permissions
  - name: Permissions
    description: List the catalog of permission strings used by roles
  - name: API Keys
    description: Create and manage API keys for programmatic access
  - name: Invitations
    description: Create and cancel email-based invitations to join the account or a project
paths:
  /api/v1/public/pricing/kubernetes:
    get:
      tags:
        - Catalog
      summary: List managed Kubernetes pricing
      description: >-
        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.
      operationId: listKubernetesPricing
      responses:
        '200':
          description: Managed Kubernetes pricing
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  plans:
                    type: array
                    items:
                      $ref: '#/components/schemas/K8sNodePlan'
                  ha_pricing:
                    $ref: '#/components/schemas/K8sHAPricing'
                  storage_pricing:
                    $ref: '#/components/schemas/K8sStoragePricing'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security: []
components:
  schemas:
    K8sNodePlan:
      type: object
      required:
        - id
        - name
        - vcpu
        - memory_gib
        - ssd_gib
        - price_per_hour
        - price_per_month
        - region
      properties:
        id:
          type: integer
          description: Node plan ID
          example: 11
        name:
          type: string
          description: Node plan name
          example: K8s Starter
        vcpu:
          type: integer
          description: Number of vCPU cores per node
          example: 1
        memory_gib:
          type: integer
          description: RAM in GiB per node
          example: 2
        ssd_gib:
          type: integer
          description: >-
            NVMe root disk in GiB per node (OS, container images, logs,
            ephemeral storage; persistent volumes come from storage nodes)
          example: 25
        transfer_gib:
          type: integer
          description: Monthly data transfer in GiB (0 means unmetered)
          example: 0
        price_per_hour:
          type: number
          description: Hourly price per node in USD (pay-as-you-go)
          example: 0.013875
        price_per_month:
          type: number
          description: Monthly price per node in USD
          example: 9.99
        total_price:
          type: number
          description: Monthly price per node in USD (same as price_per_month)
          example: 9.99
        yearly_price:
          type: number
          description: Yearly commitment price in USD (0 if not offered)
          example: 0
        twenty_four_month_price:
          type: number
          description: 24-month commitment price in USD (0 if not offered)
          example: 0
        region:
          type: string
          enum:
            - us-east
          description: Region this plan is available in
          example: us-east
    K8sHAPricing:
      type: object
      description: >-
        Optional highly available control plane pricing. The standard control
        plane is free.
      properties:
        price_per_hour:
          type: number
          description: Hourly price in USD
          example: 0.0411
        price_per_month:
          type: number
          description: Monthly price in USD
          example: 30
    K8sStoragePricing:
      type: object
      description: Per-GB pricing for dedicated NVMe storage nodes.
      properties:
        per_gb_month:
          type: number
          description: Price per GB per month in USD
          example: 0.08
        per_gb_hour:
          type: number
          description: Price per GB per hour in USD
          example: 0.00010959
        min_gb:
          type: integer
          description: Minimum storage node size in GB
          example: 100
        max_gb:
          type: integer
          description: Maximum storage node size in GB
          example: 1000
        default_gb:
          type: integer
          description: Default storage node size in GB
          example: 100
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication. Each key is bound to a specific account.

````