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/metrics/interfaces/{interfaceId}/metrics \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "2025-10-29T10:00:00Z",
"to": "2025-10-29T11:00:00Z"
}
'{
"ifInOctets": [
{
"clock": "2025-10-29 10:05:00",
"value": 1543210.5
}
],
"ifOutOctets": [
{
"clock": "2025-10-29 10:05:00",
"value": 1543210.5
}
]
}Fetches time-series traffic metrics (ifInOctets for inbound, ifOutOctets for outbound) for a specific network interface over a given time period. The values are returned as bits per second.
curl --request POST \
--url https://v1.api.altostrat.io/metrics/interfaces/{interfaceId}/metrics \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"from": "2025-10-29T10:00:00Z",
"to": "2025-10-29T11:00:00Z"
}
'{
"ifInOctets": [
{
"clock": "2025-10-29 10:05:00",
"value": 1543210.5
}
],
"ifOutOctets": [
{
"clock": "2025-10-29 10:05:00",
"value": 1543210.5
}
]
}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 unique identifier for the SNMP interface.
"9f9510bd-1234-5678-a7cf-f845a39e26db"
Time-series metrics for the specified interface.
Was this page helpful?