Bulk Silent Push Risk Score for a list of IPv6 addresses

Prev Next

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

      • {"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/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

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