Skip to main content
GET
/
bgp
/
category
List BGP IP Reputation Lists
curl --request GET \
  --url https://api.altostrat.io/bgp/category \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9b1e3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c",
    "name": "Spamhaus DROP List",
    "description": "Aggregated list of known spam sources.",
    "bgp_community": "65505:700",
    "bogon": true,
    "rfc1918": true,
    "default": true,
    "update_interval": "Daily",
    "last_updated": "2023-11-07T05:31:56Z",
    "prefix_count": 4500
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

A list of BGP IP reputation lists.

id
string<uuid>
Example:

"9b1e3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8c"

name
string
Example:

"Spamhaus DROP List"

description
string
Example:

"Aggregated list of known spam sources."

bgp_community
string
Example:

"65505:700"

bogon
boolean

True if this list contains unallocated (bogon) IP space.

rfc1918
boolean

True if this list contains private (RFC1918) IP space.

default
boolean

True if this list is included in the default BGP policy.

update_interval
string
Example:

"Daily"

last_updated
string<date-time>
prefix_count
integer

The number of active IP prefixes in this list.

Example:

4500