v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Load Balancers

Preview load balancer price

Preview the billing price for a load balancer.

post/cloud/v2/pricing/{project_id}/{region_id}/loadbalancers

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

region_idinteger required

Region ID

Example:1

Region ID

Request body

flavorstring required

Load balancer flavor name

vip_ip_family'dual' | 'ipv4' | 'ipv6'
vip_network_idstring nullable

Network ID for load balancer. If not specified, default external network will be used. Mutually exclusive with vip_port_id

vip_port_idstring nullable

Existing Reserved Fixed IP port ID for load balancer. Mutually exclusive with vip_network_id

vip_subnet_idstring nullable

Subnet ID for load balancer. If not specified, any subnet from vip_network_id will be selected. Ignored when vip_network_id is not specified.

Example request

{
  "flavor": "lb1-1-2",
  "floating_ip": {
    "existing_floating_id": "c64e5db1-5f1f-43ec-a8d9-5090df85b82d",
    "source": "existing"
  }
}

Response

OK

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

Currency code (3 letter code per ISO 4217)

discount_percentnumber nullable required

Actual discount 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_percent": 0.16,
  "per_hour": {
    "external_ip": 0.02,
    "flavor": 0.8,
    "floating_ip": 0.05
  },
  "per_month": {
    "external_ip": 14.4,
    "flavor": 576,
    "floating_ip": 36
  },
  "price_status": "show",
  "price_without_discount_per_month": 604.8,
  "tax_percent": 17,
  "total_price_per_hour": 1.02,
  "total_price_per_month": 734.4
}