Skip to main content
GET
/
sites
List All Sites
curl --request GET \
  --url https://api.altostrat.io/sites \
  --header 'Authorization: Bearer <token>'
[
  {
    "site_id": "site-abc123def456",
    "name": "Main Office Router"
  }
]

Authorizations

Authorization
string
header
required

A JWT issued by Altostrat's authentication service, containing user and organization claims.

Response

200 - application/json

A list of all sites in the organization.

site_id
string

The unique identifier for the site.

Example:

"site-abc123def456"

name
string

The user-defined name of the site, often used for display purposes.

Example:

"Main Office Router"