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/fault/top_faults \
--header 'Authorization: Bearer <token>'[
{
"tunnel_name": "Primary link (WAN1)",
"site_id": "site_8a7b6c5d4e3f2g1h",
"count": 42,
"resource_id": "dev_2j4k2l2j3k4l2j3k4",
"faults": [
{
"id": "flt_31pkd1t8FvW7qZv0jG2a9kH5mB1",
"message": "WAN link failover: Primary link (WAN1) is down",
"resolved_at": null,
"created_at": "2025-10-21T12:00:00.000000Z",
"duration": "2 hours, 15 minutes",
"severity": "error",
"type": "wantunnel",
"cause": "Probe failed: Latency exceeded 500ms threshold",
"site_id": "site_8a7b6c5d4e3f2g1h",
"resource_identifier": "dev_2j4k2l2j3k4l2j3k4"
}
]
}
]Retrieves a list of the top 10 most frequently faulting resources over the last 14 days, along with a sample of their most recent fault events. This is useful for identifying problematic areas in your network.
curl --request GET \
--url https://v1.api.altostrat.io/fault/top_faults \
--header 'Authorization: Bearer <token>'[
{
"tunnel_name": "Primary link (WAN1)",
"site_id": "site_8a7b6c5d4e3f2g1h",
"count": 42,
"resource_id": "dev_2j4k2l2j3k4l2j3k4",
"faults": [
{
"id": "flt_31pkd1t8FvW7qZv0jG2a9kH5mB1",
"message": "WAN link failover: Primary link (WAN1) is down",
"resolved_at": null,
"created_at": "2025-10-21T12:00:00.000000Z",
"duration": "2 hours, 15 minutes",
"severity": "error",
"type": "wantunnel",
"cause": "Probe failed: Latency exceeded 500ms threshold",
"site_id": "site_8a7b6c5d4e3f2g1h",
"resource_identifier": "dev_2j4k2l2j3k4l2j3k4"
}
]
}
]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.
API requests are authenticated using a JSON Web Token (JWT) provided in the Authorization header.
An array of the top faulty resources.
The display name of the resource, often extracted from the fault message.
"Primary link (WAN1)"
The identifier of the site this resource belongs to.
"site_8a7b6c5d4e3f2g1h"
The total number of faults recorded for this resource in the last 14 days.
42
The unique identifier of the resource.
"dev_2j4k2l2j3k4l2j3k4"
A sample of recent fault events for this resource.
Show child attributes
Was this page helpful?