---
title: "ASN Takedown Reputation History"
slug: "asn-takedown-reputation-history"
updated: 2026-01-07T16:48:01Z
published: 2026-01-07T16:48:01Z
canonical: "help.silentpush.com/asn-takedown-reputation-history"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.silentpush.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ASN Takedown Reputation History

```plaintext
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

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

## Example Response

```python
{
    "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
            }
        ]
    }
}
```
