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/metrics/dashboard/throughput \
--header 'Authorization: Bearer <token>'[
{
"time_slot": "2025-10-29 10:00:00",
"average_in_bps": 12500000.5,
"average_out_bps": 2350000.75,
"total_average_throughput_bps": 14850001.25
}
]Retrieves time-series data representing the average network throughput (in bits per second) across specified sites over a given time window. Use this endpoint to visualize traffic rates for dashboards and reports.
curl --request GET \
--url https://v1.api.altostrat.io/metrics/dashboard/throughput \
--header 'Authorization: Bearer <token>'[
{
"time_slot": "2025-10-29 10:00:00",
"average_in_bps": 12500000.5,
"average_out_bps": 2350000.75,
"total_average_throughput_bps": 14850001.25
}
]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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The start of the time window in ISO 8601 format (YYYY-MM-DDTHH:MM:SS). Defaults to 4 hours ago.
"2025-10-29T08:00:00"
The end of the time window in ISO 8601 format (YYYY-MM-DDTHH:MM:SS). Defaults to the current time.
"2025-10-29T12:00:00"
The time interval in minutes for aggregating data points.
15
An array of Site UUIDs to filter the results. If omitted, data from all accessible sites will be aggregated.
A list of throughput data points aggregated into time buckets.
The start time of the aggregation bucket.
"2025-10-29 10:00:00"
The average inbound throughput in bits per second for this time slot.
12500000.5
The average outbound throughput in bits per second for this time slot.
2350000.75
The combined average throughput in bits per second.
14850001.25
Was this page helpful?