v1
latestOpenAPI 3.1.02026-07-2616459400.5 KBIP Management API
Get IP details
This allows a parent account to fetch detailed information about dedicated IPs allocated to the account.
get/ip/details
Query parameters
accountstring
Filter results by subaccount name.
pageinteger
The page number for pagination.
per_pageinteger
The number of records to return per page.
Response
IP details retrieved successfully
Example response
{
"dedicated_ips": [
{
"ip_address": "192.168.1.100",
"status": "active",
"region": "US",
"rdns_status": "configured",
"assigned_accounts": [
{
"account_name": "subaccount1",
"domain": "mail.example.com",
"region": "US"
}
],
"assigned_ip_pools": [
"marketing-pool"
]
}
],
"pagination": {
"page": 1,
"per_page": 10,
"total_count": 25,
"total_pages": 3
},
"account": "subaccount1"
}