Ranked IPv4 Reputation

Prev Next

GET /explore/ipreputation/rank/ipv4

List IPv4 addresses with the highest reputation scores.

Query Parameters:

  • limit = (int) (optional) –

    • number of results to return

  • explain =<0|1> (int) (optional) –

    • show information used to calculate the reputation score

      • 0 = (default) do not show

      • 1 = show details

Request headers:

  • X-API-KEY - api-key

Example Request

https://api.silentpush.com/api/v1/merge-api/explore/ipreputation/rank/ipv4?limit=3&explain=1

Example Response

{
    "status_code": 200,
    "error": null,
    "response": {
        "ip_reputation_rank": [
            {
                "ip": "1.116.74.169",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            },
            {
                "ip": "1.161.36.35",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            },
            {
                "ip": "100.25.214.104",
                "ip_reputation": 100,
                "ip_reputation_explain": {
                    "ip_density": 1,
                    "names_num_listed": 1
                }
            }
        ]
    }
}