Download Throughput
GET/api/v2/metrics/throughput
Returns a time-series of download bandwidth metrics (MB/min) for the given time range.
Request
Query Parameters
range string
Time range (e.g. '1h', '24h', '7d'). Defaults to '24h'.
Responses
- 200
Array of { timestamp, mbPerMin } data points
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
timestamp stringrequired
Timestamp of the data point
mbPerMin numberrequired
Download bandwidth in MB per minute
[
{
"timestamp": "2024-01-15T10:00:00.000Z",
"mbPerMin": 12.5
}
]
Loading...