Skip to content

Get Product Pricing

GET
/providers/products/pricing
curl --request GET \
--url 'https://api.mengi.cloud/providers/products/pricing?currency=EUR'

Get the public “from” price per cluster product for the landing page.

The “from” price is the platform fee plus the cheapest infrastructure baseline we have pricing for. We use Hetzner as the baseline because it’s typically the lowest-cost provider in our supported list. The actual infrastructure cost a customer pays depends on which provider they pick and is billed separately at the provider’s actual rate.

For the Development (shared) tier there is no infrastructure pass-through - the host is paid for by Mengi - so the from-price equals the platform fee.

Product mapping:

  • shared -> Development tier
  • dedicated -> Dedicated tier
  • dedicatedHa -> Dedicated HA tier
currency
SupportedCurrency

Currency for pricing (EUR or USD)

string
default: EUR
Allowed values: EUR USD

Currency for pricing (EUR or USD)

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}