IPv6 information

Prev Next
GET /explore/ipv6/ipv6info/{ipv6}

Get IPv6 information.

Query Parameters:

  • ipv6 (string) (required) –

    • IPv6 address

  • explain =<0|1> (int) (optional) –

    • show details of data used to calculate the different scores in the response

    • 0 (default) - do not show details

    • 1 - show underlying data used to calculate scores

  • sparse = (string) (optional) –

    • return only specific information elements for this IPv6 address

      • asn - return AS Number for IPv6 address

      • asname - return AS Name for IPv66address

      • sp_risk_score - return Silent Push Risk Score for IPv6 address

Request headers:

  • X-API-KEY - api-key

Example request

https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111

Example response

{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "asn": 13335,
                "asn_allocation_age": 4141,
                "asn_allocation_date": 20100714,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 0,
                "asn_reputation_score": 0,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_score": 0,
                "asname": "CLOUDFLARENET, US",
                "date": 20211114,
                "density": 147,
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0,
                "subnet": "2606:4700:4700::/48"
            }
        ]
    }
}

Details for scores

https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111?explain=1
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "asn": 13335,
                "asn_allocation_age": 4141,
                "asn_allocation_date": 20100714,
                "asn_rank": 0,
                "asn_rank_score": 0,
                "asn_reputation": 0,
                "asn_reputation_explain": {},
                "asn_reputation_score": 0,
                "asn_takedown_reputation": 0,
                "asn_takedown_reputation_explain": {},
                "asn_takedown_reputation_score": 0,
                "asname": "CLOUDFLARENET, US",
                "date": 20211114,
                "density": 147,
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0,
                "sp_risk_score_explain": {
                    "sp_risk_score_decider": "asn_reputation"
                },
                "subnet": "2606:4700:4700::/48"
            }
        ]
    }
}

Silent Push Risk Score for IPv6 address

https://api.silentpush.com/api/v1/merge-api/explore/ipv6/ipv6info/2606:4700:4700::1111?sparse=sp_risk_score
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip2asn": [
            {
                "ip": "2606:4700:4700::1111",
                "sp_risk_score": 0
            }
        ]
    }
}