Skip to main content
GET
/
organization
/
{organizationId}
/
cluster
/
{clusterId}
/
currentCost
Get cluster current cost
curl --request GET \
  --url https://api.qovery.com/organization/{organizationId}/cluster/{clusterId}/currentCost \
  --header 'Authorization: <api-key>'
{
  "min_cost_in_cents": 15000,
  "min_cost": 150,
  "max_cost_in_cents": 30000,
  "max_cost": 300,
  "currency_code": "USD"
}

Authorizations

Authorization
string
header
required

Token API are generated by Qovery to manage machine to machine interaction and do not have a TTL. Prefix your token with "Token ". Curl Example: curl https://console.qovery.com/organization -H "Authorization: Token $qovery_token"

Path Parameters

organizationId
string<uuid>
required

Organization ID

clusterId
string<uuid>
required

Cluster ID

Response

Get cluster cost

currency_code
string
required
Example:

"USD"

min_cost_in_cents
integer
Example:

15000

min_cost
number
Example:

150

max_cost_in_cents
integer
Example:

30000

max_cost
number
Example:

300