Get Data Speed

Get the Data Speed chart based on the given Edge IP and timestamp

get

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.

Authorizations
Query parameters
ipstring · ipv4Required

The Edge IP address to retrieve data speed.

startTimenumberOptional

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.

Example: 1730980442000
endTimenumberOptional

The 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.

Example: 1731005642000
intervalstringOptional

Interval to return data speed.

Example: 1h
offSetstringOptional

Offset to return data speed in a specific timezone.

Example: 5.5
Responses
200
Successfully fetched edge data speed chart.
application/json
get
GET /api/v1/edge/data-speed HTTP/1.1
Host: api.monogoto.io
Authorization: Bearer JWT
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?