List Dedicated IPs
List the account's dedicated IPs and check claim availability.
List the account's dedicated IP addresses and check whether more IPs can be claimed.
Scope: dedicated_ips.read
Response
ip_addressesarrayoptionalDedicated IP objects, each with id, ip_address, hostname, and max_emails_today.
can_claimbooleanoptionalWhether another dedicated IP can be claimed.
how_many_leftintegeroptionalNumber of remaining claimable IPs.
has_dedicated_ipintegeroptionalCount or flag of owned dedicated IPs.
Sample Response
200 OK
{
"data": {
"ip_addresses": [
{
"id": 1,
"ip_address": "203.0.113.5",
"hostname": "ip5.example.com",
"max_emails_today": 100000
}
],
"can_claim": true,
"how_many_left": 2,
"has_dedicated_ip": 1
}
}