---
title: "Bulk Silent Push Risk Score for a List of Domains"
slug: "bulk-silent-push-risk-score-for-a-list-of-domains"
updated: 2026-01-07T16:08:50Z
published: 2026-01-07T16:08:50Z
canonical: "help.silentpush.com/bulk-silent-push-risk-score-for-a-list-of-domains"
---

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

```plaintext
POST /explore/bulk/domain/riskscore
```

Get the Silent Push Risk Score for multiple domains.

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

| **JSON Parameters:** | - **body (JSON)** *(required)* - - a JSON object containing a list of domains - ```json {"domains": ["<domain1>","<domain2>",...,"<domainN>"]} ``` |
| --- | --- |
| **Request headers:** | - *X-API-KEY - api-key* - Content-Type - application/json |

## Example Request

```plaintext
https://api.silentpush.com/api/v1/merge-api/explore/bulk/domain/riskscore \
     -d '{"domains": ["2021olympicupdates.live","massgames.space","micros0ft0nline.one"]}'
```

## Example Response

```python
{
    "status_code": 200,
    "error": null,
    "response": [
        {
            "domain": "micros0ft0nline.one",
            "sp_risk_score": 100
        },
        {
            "domain": "massgames.space",
            "sp_risk_score": 100
        },
        {
            "domain": "2021olympicupdates.live",
            "sp_risk_score": 100
        }
    ]
}
```
