List All IPs

List all Reverse DNS Entries for your IP addresses

List URL:

GEThttps://api.hyperleaf.com/api/ips/list

Get Example

curl https://api.hyperleaf.com/api/ips/list?key=mykey

Response Examples

circle-info

Responses

This function will allow you to view all of the IP addresses on your account.

"elastic" types are IPs you ordered as Elastic IPs "vm" types are IPs attached to a virtual machine

{
    "status": "ok",
    "count": 2,
    "ips": {
        "20.18.19.76": {
            "type": "elastic",
            "reverse_dns": ""
        },
        "20.18.10.26": {
            "type": "vm",
            "reverse_dns": "mx.myhost.com"
        }
    }
}

Last updated