Skip to main content
GET
/
business
/
ip
/
assignments
List all business IP assignments
curl --request GET \
  --url https://api.hixbe.com/fiber/business/ip/assignments \
  --header 'Authorization: Bearer <token>' \
  --header 'Hixe-Version: <hixe-version>'
[
  {
    "ip": "198.51.100.0/24",
    "status": "active",
    "rdns": "mail.example.com",
    "assigned_date": "2025-06-15",
    "type": "ipv4"
  },
  {
    "ip": "2001:db8::/48",
    "status": "active",
    "rdns": null,
    "assigned_date": "2025-06-15",
    "type": "ipv6"
  }
]
Returns all IP addresses and ranges assigned to the authenticated business account, including their status and reverse DNS configuration. Use Cases:
  • Inventory management of IP assets
  • Audit IP allocation
  • Configure reverse DNS records
  • Network planning and documentation

Authorizations

Authorization
string
header
required

JWT token obtained from Hixbe account dashboard

Headers

Hixe-Version
string
required

API version in YYYY-MM-DD format. Current version: 2026-01-01

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-01-01"

Response

Successfully retrieved IP assignments

ip
string
required

Assigned IP address or CIDR block

Example:

"198.51.100.0/24"

status
enum<string>
required

Assignment status

Available options:
active,
reserved,
deprecated
Example:

"active"

rdns
string | null

Reverse DNS record for the IP

Example:

"mail.example.com"

assigned_date
string<date>

Date when IP was assigned

Example:

"2025-06-15"

type
enum<string>

IP address type

Available options:
ipv4,
ipv6
Example:

"ipv4"