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

# IPv4 Reputation

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

Get IPv4 address reputation.

| **Query Parameters:** | - **ipv4 (string) (required) –** - ipv4 address - **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/ipv4/91.213.50.101?explain=1
```

```python
{
    "status_code": 200,
    "error": null,
    "response": {
        "ip_reputation": [
            {
                "date": 20230315,
                "ip": "91.213.50.101",
                "ip_reputation": 31,
                "ip_reputation_explain": {
                    "ip_density": 9,
                    "names_num_listed": 2
                }
            }
        ]
    }
}
```
