GET /dashboard/service/{id}/vps/ips

Get VPS IP addresses

Retrieve all IP addresses assigned to the VPS.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the VPS.
search
stringquerySearch filter for IP addresses.

Response

200
403
404
successboolean
dataarray

Request

curl -X GET "https://api.royalehosting.net/dashboard/service/{id}/vps/ips" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-organization-id: YOUR_ORG_ID"

Response

{
  "success": true,
  "data": [
    {
      "id": 0,
      "address": "string",
      "dns_name": "string",
      "version": "IPv4"
    }
  ]
}