Skip to main content

GetGlobalIpLatency

GET 
/global_ip_latency

GetGlobalIpLatency

Request

Query Parameters

    filter[global_ip_id][in] string

    Filter by Global IP ID(s) separated by commas

    filter[timestamp][gt] date-time

    Filter by timestamp greater than

    filter[timestamp][lt] date-time

    Filter by timestamp less than

Responses

200: Successful response

default: Unexpected error

Request samples


curl -L 'https://api.telnyx.com/v2/global_ip_latency' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"timestamp": "2020-01-01T00:00:00.000Z",
"global_ip": {
"id": "a836125b-20b6-452e-9c03-2653f09c7ed7",
"ip_address": null
},
"prober_location": {
"id": 1,
"name": "Amsterdam",
"lat": 52.370216,
"lon": 4.895168
},
"mean_latency": {
"amount": 100,
"unit": "ms"
},
"percentile_latency": {
"0": {
"amount": 100,
"unit": "ms"
},
"25": {
"amount": 100,
"unit": "ms"
},
"50": {
"amount": 100,
"unit": "ms"
},
"75": {
"amount": 100,
"unit": "ms"
},
"90": {
"amount": 100,
"unit": "ms"
},
"99": {
"amount": 100,
"unit": "ms"
},
"100": {
"amount": 100,
"unit": "ms"
}
}
}
]
}