Ping the server normally and get the Minecraft default ping response. This is almost the same as a regular query, but this returns a response instantly.
| Key | Format | Description |
|---|---|---|
| status | integer | The status of the server (0 = offline, 1 = starting, 2 = running) |
| ping | string | The ping time in milliseconds |
| version | string | The Minecraft server version |
| protocol | integer | The query protocol version |
| max | integer | The max amount of players the server can hold |
| online | integer | Currently online players |
{
"data":{
"server":{
"status":2,
"ping":{
"ping":"0.0",
"version":"Spigot 1.8",
"protocol":"47",
"players":{
"max":"20",
"online":"0"
}
}
}
},
"success":true,
"status":200
}