MC Status

A tool to ping a Minecraft server based on the given address

Ping

GET https://api.mugicon.net/mc-status?address={address}&port={port}&timeout={timeout}

This endpoint allows you to fetch a MineCraft server's information from given address and/or port.

Query Parameters

Name
Type
Description

address

string

The target server's address. Could be either a domain or IPv4 address.

port

integer

The target server's port. Default is ``25565`` as it's the Minecraft server's default port.

timeout

integer

The connection's maximum timeout time in milliseconds. Greater than 5000 will cap at 5000. (5 Seconds)

{    
   "code": 200,
   "message": "Success",
   "data": {
     "minecraft_version": "Server's Minecraft Version (Configurable in BungeeCord),
     "server_motd": "Server's MOTD in the plain text",
     "player_count": 10000,
     "max_player_count": 10000,
     "latency": 100
}

Last updated

Was this helpful?