GET
/
v1
/
minecraftServer
curl --request GET \
  --url https://api.mzrdev.xyz/v1/minecraftServer \
  --header 'Authorization: <api-key>'
{

    "success": true,

    "data": {

        "ip": "209.222.115.118",

        "port": 25565,

        "online": true,

        "onlinePlayers": 45736,

        "maxPlayers": 200000,

        "version": "Requires MC 1.8 / 1.21",

        "hostname": "mc.hypixel.net",

        "bannerUrl": "https://cdn.discordapp.com/attachments/1242480082736386088/1269335556848881785/hypixel.net.png?ex=66afb05b&is=66ae5edb&hm=37c429954de8c82ff05d410cc3cca6ff1de0d8ac058de11341458c88c66ed40f&"

    }

}

Query Parameters

ip
string
required

Specifies the connection IP address of the server.

Default: null

port
number

Specifies the Port of the server.

Default: 25565

Response

success
boolean

Indicates whether the request was successful. A value of true means the request was successful, while false indicates an issue or failure.

data
object

Contains the data related to the Minecraft server status, including the IP address, port, online status, number of online players, maximum players, version, hostname, and banner URL.

Response