Skip to main content
GET
/
v1
/
xdp
/
blacklist
List blacklisted IP/CIDR entries
curl --request GET \
  --url http://127.0.0.1:22100/v1/xdp/blacklist \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "items": [
    {
      "ip": "<string>",
      "prefix_len": 123,
      "reason": "<string>",
      "blocked_at_ns": 123,
      "ttl_ms": 123,
      "remaining_ms": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

max
integer<int32>
default:1024
Required range: 1 <= x <= 65536

Response

Blacklist entries

count
integer<int32>
required
items
object[]
required