Get Data Speed
Returns the Edge Data Speed chart for the Edge IP and timestamp. Calculates the appropriate interval based on the provided timestamp or defaults to the last 24 hours.
The Edge IP address to retrieve data speed.
The start time in millis for the data query. If not provided, the last 24 hours will be used by default.You can go to <a href = https://www.epochconverter.com/ target = _blank> Ephoc converter to convert time to millis.
1730980442000The end time in millis for the data query. If not provided, current time will be used by default.You can go to <a href = https://www.epochconverter.com/ target = _blank> Ephoc converter to convert time to millis.
1731005642000Interval to return data speed.
1hOffset to return data speed in a specific timezone.
5.5Successfully fetched edge data speed chart.
Invalid request parameters (e.g., invalid IP, timestamp, or time range greater than 24 hours).
GET /api/v1/edge/data-speed?ip=0.0.0.0 HTTP/1.1
Host: https:/.monogoto.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"timeStamp": "2024-11-05T18:30:00.000Z",
"downlinkSpeed": 201,
"uplinkSpeed": 158
},
{
"timeStamp": "2024-11-05T19:30:00.000Z",
"downlinkSpeed": 459,
"uplinkSpeed": 237
},
{
"timeStamp": "2024-11-05T20:30:00.000Z",
"downlinkSpeed": 678,
"uplinkSpeed": 341
}
]Last updated
Was this helpful?