Public cloud

Get a project

GET
/api/cloud/project/{uuid}/

Returns a single Public Cloud project by UUID, including your role, resource limits, cluster, and hourly pricing.

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

uuid*string

Project UUID.

Response Body

application/json

curl -X GET "https://example.com/api/cloud/project/string/"
{  "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",  "name": "string",  "description": "string",  "cluster": "string",  "cluster_location": "string",  "role": "string",  "limit": {    "max_cores": 0,    "max_ram_mib": 0,    "max_storage_fast_gib": 0,    "max_sdn_lan_bridges": 0,    "max_cores_per_vm": 0,    "max_backup_jobs": 0  },  "price_model": {    "vcore": "string",    "vcore_50": "string",    "vcore_25": "string",    "ram": "string",    "storage_fast": "string",    "public_ip": "string",    "private_network_tag": "string",    "private_network_external_vlan": "string",    "cloud_gateway_standard": "string"  }}