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/workflows/logs/recent \
--header 'Authorization: Bearer <token>'[
{
"id": "fl_log_01h3j4k5l6m7n8p9q0r1s2t3u4",
"node_id": "n2",
"component_id": "webhook",
"status": "success",
"output": {
"status": 200,
"body": {
"message": "ok"
}
},
"created_at": "2025-10-31T12:00:02.000000Z"
}
]Returns recent workflow log entries across workflows available to the authenticated user.
curl --request GET \
--url https://v1.api.altostrat.io/workflows/logs/recent \
--header 'Authorization: Bearer <token>'[
{
"id": "fl_log_01h3j4k5l6m7n8p9q0r1s2t3u4",
"node_id": "n2",
"component_id": "webhook",
"status": "success",
"output": {
"status": 200,
"body": {
"message": "ok"
}
},
"created_at": "2025-10-31T12:00:02.000000Z"
}
]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.
Standard JWT for user sessions obtained via Altostrat authentication.
Recent workflow logs.
The unique prefixed identifier for the log entry.
"fl_log_01h3j4k5l6m7n8p9q0r1s2t3u4"
The ID of the node that generated this log entry.
"n2"
The component type of the node that generated this log.
"webhook"
The status of this specific step execution.
success, error, warning "success"
The JSON output produced by the node.
{
"status": 200,
"body": { "message": "ok" }
}The timestamp when the log entry was created.
"2025-10-31T12:00:02.000000Z"
Was this page helpful?