---
title: "Ranked ASN Takedown Repuatation"
slug: "ranked-asn-takedown-repuatation"
updated: 2026-01-07T16:46:26Z
published: 2026-01-07T16:46:26Z
---

> ## 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.

# Ranked ASN Takedown Repuatation

```plaintext
GET /explore/takedownreputation/rank
```

List ASNs with the highest takedown reputation.

| **Query Parameters:** | - **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/rank?limit=3&explain=1
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "takedown_reputation_rank": [
            {
                "asn": 395082,
                "asn_allocation_age": 1916,
                "asn_allocation_date": 20160411,
                "asn_takedown_reputation": 100,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 512,
                    "ips_num_listed": 1,
                    "items_num_listed": 170,
                    "listings_max_age": 227
                },
                "asname": "BODIS-NJ, US"
            },
            {
                "asn": 56088,
                "asn_allocation_age": 3799,
                "asn_allocation_date": 20110214,
                "asn_takedown_reputation": 99,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_listed": 1,
                    "items_num_listed": 55,
                    "listings_max_age": 605
                },
                "asname": "PANDI-ID PANDI - Pengelola Nama Domain Internet Indonesia, I"
            },
            {
                "asn": 204915,
                "asn_allocation_age": 1311,
                "asn_allocation_date": 20171207,
                "asn_takedown_reputation": 98,
                "asn_takedown_reputation_explain": {
                    "ips_in_asn": 768,
                    "ips_num_listed": 19,
                    "items_num_listed": 36,
                    "listings_max_age": 1016
                },
                "asname": "AWEX, CY"
            }
        ]
    }
}
```
