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.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/client-ips curl -X GET "https://cloud.hostup.se/api/client-ips" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"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
}
}
}