Ranked Subnet Reputation

Prev Next
GET /explore/ipreputation/rank/subnet

List IPv4 subnets 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/subnet?limit=3&explain=1
{
    "status_code": 200,
    "error": null,
    "response": {
        "subnet_reputation_rank": [
            {
                "subnet": "103.119.107.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 2
                }
            },
            {
                "subnet": "103.123.42.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 3
                }
            },
            {
                "subnet": "103.123.43.0/24",
                "subnet_allocation_age": "UNKNOWN",
                "subnet_allocation_date": "UNKNOWN",
                "subnet_reputation": 100,
                "subnet_reputation_explain": {
                    "ips_in_subnet": 256,
                    "ips_num_active": 2,
                    "ips_num_listed": 20
                }
            }
        ]
    }
}