ASN takedown reputation

Prev Next
GET /explore/takedownreputation/asn/{asn}

Get a takedown reputation for ASN.

Query Parameters:

  • asn = (int) (required) –

    • AS number

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

    • show information used to calculate the reputation score

      • 0 = (default) do not show

      • 1 = show details

Request headers:

  • X-API-KEY - api-key

Parameter

Type

Required

Description

asn

int

Yes

AS number

explain

int

No

Show information used to calculate the reputation score

  • 0 = (default) do not show

  • 1 = show details

Request Headers

Header

Description

X-API-KEY

API key for authentication.

Example request

https://api.silentpush.com/api/v1/merge-api/explore/takedownreputation/asn/13335?explain=1

Example response

{
    "status_code": 200,
    "error": null,
    "response": {
        "takedown_reputation": {
            "asn": 13335,
            "asn_allocation_age": 4014,
            "asn_allocation_date": 20100714,
            "asn_takedown_reputation": 0,
            "asn_takedown_reputation_explain": {
                "ips_in_asn": 2307840,
                "ips_num_listed": 902,
                "items_num_listed": 2448,
                "listings_max_age": 1853
            },
            "asname": "CLOUDFLARENET, US"
        }
    }
}