---
title: "Ranked Subnet Reputation"
slug: "ranked-subnet-reputation"
updated: 2026-01-07T18:22:22Z
published: 2026-01-07T18:22:22Z
canonical: "help.silentpush.com/ranked-subnet-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 Subnet Reputation

```plaintext
GET /explore/ipreputation/rank/subnet
```

List IPv4 subnets 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/subnet?limit=3&explain=1
```

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "subnet_reputation_rank": [
            {
                "subnet": "103.119.107.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 2
                }
            },
            {
                "subnet": "103.123.42.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 3
                }
            },
            {
                "subnet": "103.123.43.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 20
                }
            }
        ]
    }
}
```
