Skip to main content
GET
/
bgp
/
category
List BGP/DNR Lists
curl --request GET \
  --url https://api.altostrat.io/content/bgp/category \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "bgp_community": "65505:700",
    "bogon": true,
    "rfc1918": true,
    "default": true,
    "update_interval": "Daily",
    "last_updated": "07 Apr 2025 03:15:00",
    "prefix_count": 123
  }
]

Authorizations

Authorization
string
header
required

Enter the Bearer token (obtained via authentication or provided internally).

Response

A list of BGP/DNR lists.

id
string<uuid>
name
string
description
string | null
bgp_community
string

BGP community string associated with this list.

Example:

"65505:700"

bogon
boolean

Indicates if this list contains BOGON addresses.

rfc1918
boolean

Indicates if this list contains RFC1918 private addresses.

default
boolean

Indicates if this is a default list applied to new policies.

update_interval
string

Human-readable fetch frequency.

Example:

"Daily"

last_updated
string | null

Timestamp of the last successful fetch (timezone adjusted by resource).

Example:

"07 Apr 2025 03:15:00"

prefix_count
integer

Number of active IP prefixes currently in this list.

I