Bulk Silent Push Risk Score for a list of IPv4 addresses

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

      • {"ips": ["<ip1>","<ip2>",...,"<ipN>"]}

Request headers:

  • X-API-KEY - api-key

  • Content-Type - application/json

Example request

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

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