Get All Pricing
GET
/providers/pricing
const url = 'https://api.mengi.cloud/providers/pricing';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.mengi.cloud/providers/pricingGet detailed cluster pricing for all supported providers. Returns control plane costs, node costs, and total monthly estimates.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example