Skip to main content
GET
/
ping
/
{player}
Get All Player Ping History
curl --request GET \
  --url https://api.example.com/ping/{player}
{
  "data": [
    {
      "avg": 123,
      "date": "<string>",
      "history": [
        123
      ],
      "last_lobby": "<string>",
      "last_ping": "<string>",
      "max": 123,
      "min": 123
    }
  ]
}

Path Parameters

player
string
required

Player UUID to fetch ping history for

Query Parameters

time
string

Display the time properties

history
string

Display the history properties

Response

Successfully retrieved player ping history

data
object[]