---
title: "ASN Reputation"
slug: "asn-reputation"
updated: 2026-01-07T18:21:04Z
published: 2026-01-07T18:21:04Z
canonical: "help.silentpush.com/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.

# ASN Reputation

```plaintext
GET /explore/ipreputation/asn/{asn}
```

Get ASN reputation.

| **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* |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/ipreputation/asn/211298?explain=1
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "asn_reputation": [
            {
                "asn": 211298,
                "asn_reputation": 100,
                "asn_reputation_explain": {
                    "ips_in_asn": 256,
                    "ips_num_active": 62,
                    "ips_num_listed": 252
                },
                "asname": "CYBER-CASA, GB",
                "date": 20210916
            }
        ]
    }
}
```
