POST /explore/bulk//history/ip2asn/ipv4Get information for multiple IPv4 addresses.
JSON Parameters: |
|
Request headers: |
|
Example Request
https://api.silentpush.com/api/v1/merge-api/explore/bulk/history/ip2asn/ipv4 \
-d '{"ips": ["1.1.1.1", "9.9.9.9"], "dates": [20210509, 20201123]}'Example Response
{
"status_code": 200,
"error": null,
"response": {
"ip2asn": [
[
{
"asn": 13335,
"asname": "CLOUDFLARENET, US",
"date": 20210509,
"ip": "1.1.1.1",
"subnet": "1.1.1.0/24"
},
{
"asn": 19281,
"asname": "QUAD9-AS-1, US",
"date": 20210509,
"ip": "9.9.9.9",
"subnet": "9.9.9.0/24"
}
],
[
{
"asn": 13335,
"asname": "CLOUDFLARENET, US",
"date": 20201123,
"ip": "1.1.1.1",
"subnet": "1.1.1.0/24"
},
{
"asn": 19281,
"asname": "QUAD9-AS-1, US",
"date": 20201123,
"ip": "9.9.9.9",
"subnet": "9.9.9.0/24"
}
]
]
}
}