Get assigned IP addresses for your account

Get an overview of all IP addresses associated with your account. It also returns a unique ID needed for follow-up actions or identifying specific resources in other API calls. Use this information to manage and understand your network configuration.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/client-ips
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/client-ips" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "ips": [
      {
        "id": "string",
        "address": "string",
        "type": "string",
        "subnet": "string",
        "subnet_id": "string",
        "rdns": "string",
        "mac": "string",
        "status": "string",
        "account_id": "string",
        "assigned_date": "string",
        "description": "string"
      }
    ],
    "subnets": [
      "string"
    ],
    "summary": {
      "total_ips": 0,
      "ipv4_count": 0,
      "ipv6_count": 0,
      "allocated_count": 0,
      "available_count": 0,
      "subnet_count": 0
    }
  }
}