https://api.apifreaks.com/v1.0/domain/dns/reverse
$ pip install requests
Click Test it to start the request and see the response here!
| Field | Type | Requirement | Description |
|---|---|---|---|
| totalRecords | Integer | Mandatory | Total number of records found across the query. |
| totalPages | Integer | Mandatory | Total number of pages (assuming 50 records per page). |
| currentPage | Integer | Mandatory | Current page number. |
| reverseDnsRecords | Array<Object> | Mandatory | List of reverse DNS records. |
Each object within the list of reverse DNS records includes the following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| queryTime | String | Mandatory | Time at which the query was made. (Format: YYYY-MM-DD HH:mm:ss) |
| domainName | String | Mandatory | Queried domain. |
| domainRegistered | Boolean | Mandatory | Indicates whether the domain is registered (true) or not (false). |
| dnsTypes | Object | Mandatory | DNS record types included in the response. |
| dnsRecords | Array<Object> | Mandatory | List of DNS records, with different formats depending on the record type. |
A and AAAA DNS record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 1 for A, 28 for AAAA). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "A", "AAAA"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| address | String | Mandatory | IPV4 or IPV6 address for A or AAAA records respectively. |
CNAME DNS record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 5 for CNAME). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "CNAME"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| target | String | Mandatory | Host to which this domain points. |
MX DNS record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 15 for MX). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "MX"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| target | String | Mandatory | Targeted mail service provider. |
| priority | Integer | Mandatory | Priority level associated with the mail server. |
NS DNS record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 2 for NS). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "NS"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| singleName | String | Mandatory | Name server for that particular domain. |
SOA DNS record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 6 for SOA). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "SOA"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| admin | String | Mandatory | Administrative contact email for SOA records. |
| host | String | Mandatory | Primary name server for SOA records. |
| expire | String | Mandatory | Expiry time for SOA records. |
| minimum | Integer | Mandatory | The minimum TTL for SOA records. |
| refresh | Integer | Mandatory | Indicates the refresh interval for SOA records. |
| retry | Integer | Mandatory | The retry interval for SOA records. |
| serial | Integer | Mandatory | The serial number for SOA records. |
SPF and TXT record object contains following fields:
| Field | Type | Requirement | Description |
|---|---|---|---|
| name | String | Mandatory | Name of the queried domain. |
| type | Integer | Mandatory | DNS type (e.g., 16 for TXT). |
| dnsType | String | Mandatory | DNS type as a string (e.g., "TXT"). |
| ttl | Integer | Mandatory | Time to live. |
| rawText | String | Mandatory | Raw (un-parsed) DNS record. |
| rRsetType | Integer | Mandatory | Indicates the resource record set type. |
| strings | Array<String> | Mandatory | List containing the verification strings. |