Skip to main content
GET
/
v1
/
ddos
/
filters
/
{ipAddress}
Get filter rules for an IP
curl --request GET \
  --url https://api.waterfall.host/v1/ddos/filters/{ipAddress} \
  --header 'Authorization: Bearer <token>'
{
  "ipAddress": "82.24.83.10",
  "rules": [
    {
      "policy": "minecraft",
      "protocols": [
        "tcp"
      ],
      "ports": [
        25565
      ]
    }
  ],
  "profileId": 9263,
  "site": "DC3"
}

Authorizations

Authorization
string
header
required

API key generated from your Waterfall dashboard

Path Parameters

ipAddress
string<ipv4>
required

IPv4 address to get filters for

Response

Current filter rules

ipAddress
string
Example:

"82.24.83.10"

rules
object[]
profileId
integer
Example:

9263

site
string
Example:

"DC3"