GET /explore/padns/lookup/answer/{qtype}/{qname}Reverse lookup of Passive DNS data.
Query Parameters: |
|
Request headers: |
|
Note
Wildcards (*) are supported in qname.
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/ns/vida.ns.cloudflare.com
Note
The reverse TXT lookup will look for the string given in qname anywhere in the TXT record value.
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/txt/verification*=70c3e598
Note
Wildcards (*) may be used in qname for reverse txt lookup.
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/txt/verification*=70c3e598
Note
The reverse SOA lookup will look for the string given in qname anywhere in the SOA record value.
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/soa/jomax
Note
Wildcards (*) may be used in qname for reverse SOA lookup.
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/soa/jomax.net*20210725
Note
Regular expression patterns must follow the re2 specification - backtracking and look-around assertions are not supported.
Note
For best performance, regular expressions should begin with ^ and end with $, i.e., match from the beginning of name to end of name.
Warning
Regular expressions are slower than exact or wildcard matches - wildcards should be used instead, whenever possible.
Warning
Regular expressions are not supported for qtype=txt or type-soa.
Example request
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/answer/ns/vida.ns.cloudflare.com \
?last_seen_after=2021-07-01 \
&limit=2Example response
{
"status_code": 200,
"error": null,
"response": {
"records": [
{
"answer": "vida.ns.cloudflare.com",
"count": 58,
"first_seen": "2021-04-30 18:29:30",
"last_seen": "2021-07-10 18:32:14",
"nshash": "7659b08bfceced5ef1ad24c26d2e8078",
"query": "gsjjyzs.com",
"ttl": 86400,
"type": "NS"
},
{
"answer": "vida.ns.cloudflare.com",
"count": 7,
"first_seen": "2021-07-05 19:42:44",
"last_seen": "2021-07-10 18:32:11",
"nshash": "28e44562b64c3a4f355a877e97cb6fa4",
"query": "gscooling.com",
"ttl": 86400,
"type": "NS"
}
]
}
}