GET /explore/padns/lookup/query/{qtype}/{qname}Forward 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/query/ns/sil*push.*
Note
Regular expression patterns must follow the re2 specification - backtracking and look-around assertions are not supported.
Note
Using a regular expression overrides the qname parameter, including any wildcards - when using the regex query parameter, qname may optionally be substituted by an underscore:
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/query/ns/_?regex=^sil[[:alpha:]]{3}\.[a-z]{2,}$
Note
For best performance, regular expressions should begin with ^ and end with $ - i.e., match from beginning of name to end of name.
Warning
Regular expressions are slower than exact or wildcard match - wildcards should be used instead, whenever possible.
Example request
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/query/ns/silentpush.com \
?last_seen_after=-172800 \
&sort=last_seen/descExample response
{
"status_code": 200,
"error": null,
"response": {
"records": [
{
"answer": "vida.ns.cloudflare.com",
"count": 236,
"first_seen": "2020-12-24 19:04:43",
"last_seen": "2021-07-09 16:39:51",
"nshash": "850c47a684c9ea9c32ece18e7be4cddc",
"query": "silentpush.com",
"ttl": 172800,
"type": "NS"
},
{
"answer": "henry.ns.cloudflare.com",
"count": 236,
"first_seen": "2020-12-24 19:04:43",
"last_seen": "2021-07-09 16:39:51",
"nshash": "850c47a684c9ea9c32ece18e7be4cddc",
"query": "silentpush.com",
"ttl": 172800,
"type": "NS"
}
]
}
}