---
title: "Bulk Silent Push Risk Score for a List of IPv4 Addresses"
slug: "bulk-silent-push-risk-score-for-a-list-of-ipv4-addresses"
updated: 2026-01-07T16:37:53Z
published: 2026-01-07T16:37:53Z
---

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

# Bulk Silent Push Risk Score for a List of IPv4 Addresses

```plaintext
POST /explore/bulk/ipv4/riskscore
```

Get the Silent Push Risk Score for multiple IPv4 addresses.

- A maximum of 100 IPv4 addresses may be submitted in a single request

| **JSON Parameters:** | - **body (JSON)** *(required)* - - a JSON object containing a list of IPv4 addresses - ```json {"ips": ["<ip1>","<ip2>",...,"<ipN>"]} ``` |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* - Content-Type - application/json |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/bulk/ipv4/riskscore \
     -d '{"ips": ["87.246.7.245","77.247.110.204","45.153.160.139"]}'
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": [
        {
            "ip": "87.246.7.245",
            "sp_risk_score": 100
        },
        {
            "ip": "45.153.160.139",
            "sp_risk_score": 100
        },
        {
            "ip": "77.247.110.204",
            "sp_risk_score": 100
        }
    ]
}
```
