v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
GPU Virtual

Preview virtual GPU cluster price

Preview the billing price for a virtual GPU cluster.

post/cloud/v2/pricing/{project_id}/{region_id}/gpu/virtual/clusters

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

region_idinteger required

Region ID

Example:1

Region ID

Request body

flavorstring required

Virtual GPU cluster flavor

instances_countinteger

A multiplier that would be used to calculate the price, multiplying the flavor, IP, and volume prices by this number. Must be greater than zero.

namestring required

Virtual GPU cluster name

Example request

{
  "flavor": "g1-gpu-small-1gpu-6vcpu",
  "instances_count": 1,
  "interfaces": [
    {
      "floating_ip": {
        "source": "new"
      }
    }
  ],
  "name": "poplar-ubuntu",
  "volumes": [
    {
      "size": 1000,
      "source": "new-volume"
    }
  ]
}

Response

OK

currency_code'AZN' | 'EUR' | 'USD' nullable required

Currency code (3-letter code per ISO 4217).

discount_percentstring required

Actual discount as a relative value.

price_status'error' | 'hide' | 'show' required
price_without_discount_per_monthnumber nullable required

Total price VAT inclusive per month without discount.

tax_percentnumber required

Tax rate applied to the subtotal, represented as a percentage

total_price_per_hournumber nullable required

Total price VAT inclusive per hour.

total_price_per_monthnumber nullable required

Total price VAT inclusive per month.

Example response

{
  "currency_code": "USD",
  "discount_details": [
    {
      "discount": "0.1",
      "resource": "ssd_hiiops"
    }
  ],
  "discount_percent": "10.50",
  "per_gb": {
    "egress_traffic_virtual": 0.05
  },
  "per_hour": {
    "external_ip": 14.4,
    "flavor": 576,
    "floating_ip": 36,
    "volumes": {
      "cold": 78,
      "ssd_hiiops": 20,
      "ssd_lowlatency": 10,
      "standard": 10,
      "ultra": 78
    }
  },
  "per_month": {
    "external_ip": 14.4,
    "flavor": 576,
    "floating_ip": 36,
    "volumes": {
      "cold": 78,
      "ssd_hiiops": 20,
      "ssd_lowlatency": 10,
      "standard": 10,
      "ultra": 78
    }
  }
}