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 POST \
--url https://v1.api.altostrat.io/api/synchronous/{siteId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"command": "/ip/arp/print",
"parameters": []
}
'{
"status": "success",
"data": "<unknown>"
}Runs a RouterOS command against a managed site and returns the router response. Use synchronous commands for reads or short diagnostics, not long-running configuration changes.
curl --request POST \
--url https://v1.api.altostrat.io/api/synchronous/{siteId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"command": "/ip/arp/print",
"parameters": []
}
'{
"status": "success",
"data": "<unknown>"
}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>
The target site/router UUID.
"9c69345c-8d39-4786-9f17-8153c988c89a"
Was this page helpful?