IP addresses

List IP addresses

GET
/api/network/ips/

Returns IP addresses assigned to your services (dedicated servers, VPS, cloud projects) together with their current PTR record. can_update_ptr shows whether you may change the PTR record (service owner, shared access with the rDNS permission, or a cloud project role with network write).

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/api/network/ips/"
[  {    "ip": "string",    "content": "string",    "comment": "string",    "can_update_ptr": true,    "service_kind": "string",    "service_name": "string",    "service_sid": "string",    "service_uuid": "string"  }]