Bulk Silent Push Risk Score for a list of domains

Prev Next
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

      • {"domains": ["<domain1>","<domain2>",...,"<domainN>"]}

Request headers:

  • X-API-KEY - api-key

  • Content-Type - application/json

Example request

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

Example response

{
    "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
        }
    ]
}