---
title: "Bulk Silent Push Risk Score for a List of IPv6 Addresses"
slug: "bulk-silent-push-risk-score-for-a-list-of-ipv6-addresses"
updated: 2026-01-07T16:44:29Z
published: 2026-01-07T16:44:29Z
canonical: "help.silentpush.com/bulk-silent-push-risk-score-for-a-list-of-ipv6-addresses"
---

> ## 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 IPv6 Addresses

BPOST /explore/bulk/ipv6/riskscore

Get the Silent Push Risk Score for multiple IPv6 addresses.

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

| **JSON Parameters:** | - **body (JSON)** *(required)* - - a JSON object containing a list of IPv6 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/ipv6/riskscore \
     -d '{"ips": ["2600:3c02::f03c:91ff:fee2:5b0f","2001:4860:4802:34::15","2a02:4780:b:656:0:2fec:8673:1"]}'
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": [
        {
            "ip": "2001:4860:4802:34::15",
            "sp_risk_score": 44
        },
        {
            "ip": "2a02:4780:b:656:0:2fec:8673:1",
            "sp_risk_score": 9
        },
        {
            "ip": "2600:3c02::f03c:91ff:fee2:5b0f",
            "sp_risk_score": 30
        }
    ]
}
```
