Skip to main content
GET
/
ping
/
today
/
{player}
Get Player Recent Ping History (Last 7 Days)
curl --request GET \
  --url https://api.example.com/ping/today/{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 recent ping history for

Response

Successfully retrieved recent player ping history

data
object[]