Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request GET \
--url https://v1.api.altostrat.io/sites/recent \
--header 'Authorization: Bearer <token>'[
{
"id": "9a9a3e6f-1b1a-4b1a-8c1a-1e1a1a1a1a1a",
"pid": "site_2m3h5n7k9j8g7f6e5d4c3b2a1",
"name": "Main Office Router",
"model": "CCR2004-1G-12S+2XS",
"version": "7.15.1",
"ip_address": "203.0.113.54",
"online": true,
"last_seen": "just now",
"accessed_at": "2025-10-29T11:47:50Z"
}
]Returns a list of the 5 most recently accessed sites for the authenticated user, ordered by most recent access.
curl --request GET \
--url https://v1.api.altostrat.io/sites/recent \
--header 'Authorization: Bearer <token>'[
{
"id": "9a9a3e6f-1b1a-4b1a-8c1a-1e1a1a1a1a1a",
"pid": "site_2m3h5n7k9j8g7f6e5d4c3b2a1",
"name": "Main Office Router",
"model": "CCR2004-1G-12S+2XS",
"version": "7.15.1",
"ip_address": "203.0.113.54",
"online": true,
"last_seen": "just now",
"accessed_at": "2025-10-29T11:47:50Z"
}
]Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authenticate requests by providing a JSON Web Token (JWT) in the Authorization header. Example: Authorization: Bearer <YOUR_JWT>
A list of recently accessed sites.
The unique identifier (UUID) for the site.
"9a9a3e6f-1b1a-4b1a-8c1a-1e1a1a1a1a1a"
A time-sortable, prefixed unique identifier for the site.
"site_2m3h5n7k9j8g7f6e5d4c3b2a1"
The user-defined name for the site.
"Main Office Router"
The model of the MikroTik device.
"CCR2004-1G-12S+2XS"
The RouterOS software version.
"7.15.1"
The last known public IP address of the device.
"203.0.113.54"
Indicates if the site is currently online.
true
A human-readable string indicating when the last heartbeat was received.
"just now"
The timestamp when the user last accessed this site.
"2025-10-29T11:47:50Z"
Was this page helpful?