Skip to main content
GET
/
backup
/
{siteId}
/
subnets
List discovered site subnets
curl --request GET \
  --url https://v1.api.altostrat.io/backup/{siteId}/subnets \
  --header 'Authorization: Bearer <token>'
[
  {
    "route": "192.168.88.0/24",
    "interface": "bridge"
  }
]

Authorizations

Authorization
string
header
required

A bearer token is required for all API requests. Obtain a token via the Altostrat Authentication API.

Path Parameters

siteId
string<uuid>
required

The unique identifier for the site.

Response

A list of discovered subnet routes.

route
string
Example:

"192.168.88.0/24"

interface
string | null
Example:

"bridge"