IP addresses

List project public IPs

GET
/cloud/project/{uuid}/public-ips/

Returns public IPv4 and IPv6 addresses reserved on this project, including PTR, comment, and whether the address is attached to a VM or Cloud Gateway. Complements the account-wide /network/ips/ list.

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/cloud/project/string/public-ips/"
[  {    "ip": "string",    "content": "string",    "comment": "string",    "vmid": 0,    "status": "string",    "attachment": "string"  }]