Skip to main content
GET
/
v1
/
monitoring
/
dashboard
/
data-transferred
Get Data Transferred Volume
curl --request GET \
  --url https://api.altostrat.io/v1/monitoring/dashboard/data-transferred \
  --header 'Authorization: Bearer <token>'
[
  {
    "time_slot": "2025-10-29 10:00:00",
    "total_in_bytes": 937500000,
    "total_out_bytes": 176250000,
    "total_combined_bytes": 1113750000
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_time
string<date-time>

The start of the time window in ISO 8601 format (YYYY-MM-DDTHH:MM:SS). Defaults to 4 hours ago.

Example:

"2025-10-29T08:00:00"

end_time
string<date-time>

The end of the time window in ISO 8601 format (YYYY-MM-DDTHH:MM:SS). Defaults to the current time.

Example:

"2025-10-29T12:00:00"

bucket_interval_minutes
integer
default:5

The time interval in minutes for aggregating data points.

Example:

15

site_ids[]
string<uuid>[]

An array of Site UUIDs to filter the results. If omitted, data from all accessible sites will be aggregated.

Response

A list of data volume data points aggregated into time buckets.

time_slot
string<date-time>

The start time of the aggregation bucket.

Example:

"2025-10-29 10:00:00"

total_in_bytes
integer

The total volume of inbound data in bytes for this time slot.

Example:

937500000

total_out_bytes
integer

The total volume of outbound data in bytes for this time slot.

Example:

176250000

total_combined_bytes
integer

The combined total volume of data in bytes.

Example:

1113750000