ReverseEndpoint

Queries DNS for reverse records for a specified IP address.

GET
https://api.example.com/v1/dns/reverse

If successful, this endpoint will return a 200 OK status.

Arguments

The following arguments are supported for this endpoint.

Name Type Default Value

trace

Run a full recursive lookup starting from the root nameservers and return only uncached data

Boolean false

ip_address Required

The IP address to query

String None

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    results: [ DNS Response {
        server: String
        answers: [ DNS Answer {
            name: String
            ttl: Integer
            type: String
            value: String
        } ]
    } ]
}