Projekty

Get account usage

GET
/cloud/account-usage/

Returns account-wide Public Cloud resource usage and limits for the billing account of the API key owner. used.cores is the allocated vCPU sum and counts 1:1 against limits.account_max_cores (all CPU classes).

Authorization

bearerAuth
AuthorizationBearer <token>

API key created in the portal (Settings → API Keys). Send as Authorization: Bearer <key>.

In: header

Response Body

application/json

curl -X GET "https://example.com/cloud/account-usage/"
{  "limits": {    "account_max_cores": 0,    "account_max_cores_per_vm": 0  },  "used": {    "cores": 0,    "ram_mib": 0,    "storage_fast_gb": 0  }}