Skip to main content
GET
/
site-minimal
List Sites (Minimal)
curl --request GET \
  --url https://api.altostrat.io/site-minimal \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "9a9a3e6f-1b1a-4b1a-8c1a-1e1a1a1a1a1a",
    "pid": "site_2m3h5n7k9j8g7f6e5d4c3b2a1",
    "name": "Branch Office Firewall",
    "has_pulse": true,
    "software_version": "7.15.1",
    "software_id": "U0B1-15HF",
    "serial_number": "HFB098M0M2P",
    "created_at": "2025-09-15T14:00:00Z"
  }
]

Authorizations

Authorization
string
header
required

Authenticate requests by providing a JSON Web Token (JWT) in the Authorization header. Example: Authorization: Bearer <YOUR_JWT>

Response

200 - application/json

A minimal list of sites.

id
string<uuid>

The unique identifier (UUID) for the site.

Example:

"9a9a3e6f-1b1a-4b1a-8c1a-1e1a1a1a1a1a"

pid
string

A time-sortable, prefixed unique identifier for the site.

Example:

"site_2m3h5n7k9j8g7f6e5d4c3b2a1"

name
string

The user-defined name for the site.

Example:

"Branch Office Firewall"

has_pulse
boolean

Indicates if the site is currently online.

Example:

true

software_version
string | null

The RouterOS software version.

Example:

"7.15.1"

software_id
string | null

The software ID provided by RouterOS.

Example:

"U0B1-15HF"

serial_number
string | null

The serial number of the MikroTik device.

Example:

"HFB098M0M2P"

created_at
string<date-time>

The timestamp when the site was created.

Example:

"2025-09-15T14:00:00Z"