GET /explore/padns/lookup/domain/asns/{domain}Show ASNs that have been used by A records for a domain within the last 30 days, including subdomains.
Query Parameters: |
|
Request headers: |
|
Example request
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/domain/asns/example.comExample response
{
"status_code": 200,
"error": null,
"response": {
"records": [
{
"domain": "example.com",
"domain_asns": {
"15133": "EDGECAST, US"
}
}
]
}
}Example request with detailed response
https://api.silentpush.com/api/v1/merge-api/explore/padns/lookup/domain/asns/example.com?result_format=fullExample response
{
"status_code": 200,
"error": null,
"response": {
"records": [
{
"asn": 15133,
"asn_size": 134400,
"asname": "EDGECAST, US",
"domain_hosts_in_asn": 2
}
]
}
}