ASN Takedown Reputation History

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

Get takedown reputation for ASN.

Query Parameters:

  • asn (int) required –

    • AS number

  • limit = (int) (optional) –

    • number of results to return

  • 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

Example Request

https://api.silentpush.com/api/v1/merge-api/explore/takedownreputation/history/asn/56088?limit=3&explain=1

Example Response

{
    "status_code": 200,
    "error": null,
    "response": {
        "takedown_reputation_history": [
            {
                "asn": 56088,
                "asn_takedown_reputation": 99,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_listed": 1,
                    "items_num_listed": 55,
                    "listings_max_age": 605
                },
                "date": 20210710
            },
            {
                "asn": 56088,
                "asn_takedown_reputation": 99,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_listed": 1,
                    "items_num_listed": 54,
                    "listings_max_age": 604
                },
                "date": 20210709
            },
            {
                "asn": 56088,
                "asn_takedown_reputation": 99,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_listed": 1,
                    "items_num_listed": 54,
                    "listings_max_age": 603
                },
                "date": 20210708
            }
        ]
    }
}