GET
/
security
/
sifter
/
v2
/
protected_addresses
/
announces
Get BGP announces
curl --request GET \
  --url https://api.gcore.com/security/sifter/v2/protected_addresses/announces \
  --header 'Authorization: <api-key>'
[
  {
    "announced": [
      "192.9.9.1/32",
      "203.0.113.1/32"
    ],
    "client_id": "128120",
    "not_announced": [
      "122.2.2.1/32",
      "120.0.113.2/32"
    ]
  }
]

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

site
string | null
Required string length: 1 - 100
origin
enum<string> | null
Available options:
STATIC,
DYNAMIC
announced
boolean | null
client_id
integer | null

Response

Successful Response

announced
string<ipv4network>[]
required
Examples:
["192.9.9.1/32", "203.0.113.1/32"]
client_id
integer
required
Required range: x >= 0
Examples:

"128120"

not_announced
string<ipv4network>[]
required
Examples:
["122.2.2.1/32", "120.0.113.2/32"]