---
title: "Ranked ASN Reputation"
slug: "ranked-asn-reputation"
updated: 2026-01-07T17:52:30Z
published: 2026-01-07T17:52:30Z
canonical: "help.silentpush.com/ranked-asn-reputation"
---

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

```plaintext
GET /explore/ipreputation/rank/asn
```

List ASNs with the highest reputation scores.

| **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/ipreputation/rank/asn?limit=3&explain=1
```

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "asn_reputation_rank": [
            {
                "asn": 61911,
                "asn_allocation_age": 2698,
                "asn_allocation_date": 20140429,
                "asn_reputation": 100,
                "asn_reputation_explain": {
                    "ips_in_asn": 2048,
                    "ips_num_active": 4,
                    "ips_num_listed": 8
                },
                "asname": "RIDERSON MENDES BORGES - ME, BR"
            },
            {
                "asn": 44446,
                "asn_allocation_age": 406,
                "asn_allocation_date": 20200807,
                "asn_reputation": 100,
                "asn_reputation_explain": {
                    "ips_in_asn": 768,
                    "ips_num_active": 7,
                    "ips_num_listed": 9
                },
                "asname": "SIBIRINVEST, NL"
            },
            {
                "asn": 139535,
                "asn_allocation_age": "UNKNOWN",
                "asn_allocation_date": "UNKNOWN",
                "asn_reputation": 100,
                "asn_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 2
                },
                "asname": "RAYFPL-AS Raycom Fibers Private Limited, IN"
            }
        ]
    }
}
```
