Queries DNS for reverse records for a specified IP address.
If successful, this endpoint will return a 200 OK status.
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 |
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 } ] } ] }