curl --request GET \
--url http://localhost:3000/api/server/ping
{
"pong": true,
"timestamp": 123
}
Simple ping endpoint to check if server is responsive
curl --request GET \
--url http://localhost:3000/api/server/ping
{
"pong": true,
"timestamp": 123
}
Server is responsive
The response is of type object
.
Was this page helpful?