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

GET /explore/ipreputation/rank/ipv4

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

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip_reputation_rank": [
            {
                "ip": "1.116.74.169",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            },
            {
                "ip": "1.161.36.35",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            },
            {
                "ip": "100.25.214.104",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            }
        ]
    }
}
```
