Vai al contenuto principale
GET
/
bgp
/
category
Elenca le liste di reputazione IP BGP
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": "Elenco aggregato di fonti di spam note.",
    "bgp_community": "65505:700",
    "bogon": true,
    "rfc1918": true,
    "default": true,
    "update_interval": "Giornaliero",
    "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

Un elenco di liste di reputazione IP BGP.

id
string<uuid>
Example:

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

name
string
Example:

"Spamhaus DROP List"

description
string
Example:

"Elenco aggregato di fonti di spam note."

bgp_community
string
Example:

"65505:700"

bogon
boolean

True se questa lista contiene spazio IP non allocato (bogon).

rfc1918
boolean

True se questa lista contiene spazio IP privato (RFC1918).

default
boolean

True se questa lista è inclusa nella policy BGP predefinita.

update_interval
string
Example:

"Giornaliero"

last_updated
string<date-time>
prefix_count
integer

Il numero di prefissi IP attivi in questa lista.

Example:

4500