Status Ping

GET /status/ping/:ip/:port

Check real-time status and details of a Minecraft server.

URL Parameters

Parameter Type Description
ip string Server IP address
port integer Server port (default: 25565)

Example Request

GET /api/v0.1/status/ping/mc.hypixel.net/25565

Example Response

{
  "success": true,
  "ip": "mc.hypixel.net",
  "port": 25565,
  "online": true,
  "players": {
    "online": 12000,
    "max": 120000
  },
  "version": "1.20.1",
  "motd": "Hypixel Network",
  "latency": 45,
  "favicon": "data:image/png;base64,..."
}