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
}
]
}
}