/ping
/api/ping
/api/pingOverview
Endpoint
GET /api/pingExample
fetch('/api/ping')
.then(response => response.json())
.then(data => {
console.log(`Ping: ${data.ping}ms`);
});Response
{
"ping": 25
}Description
Last updated