我的世界服务器信息
查询Minecraft服务器当前状态
  • API文档
  • 在线调试
  • 返回码表
  • 示例代码

接口地址: https://api.vore.top/api/MCServer

返回格式: JSON

请求方式: GET

请求示例: https://api.vore.top/api/MCServer?host=cloud.rapda.top&port=19132

请求参数说明:

返回参数说明:

返回示例:

{
    "code": 200,
    "msg": "SUCCESS",
    "data": {
        "name": "EarthOnline-RoidMC",
        "host": "cloud.rapda.top",
        "port": "19132",
        "addr": "182.61.20.120",
        "ping": "58ms",
        "max_players": 100,
        "now_players": 0,
        "version": "Geyser (git-master-0537c04) 1.17.10",
        "software": "Vanilla",
        "info": "服务器连接成功"
    },
    "time": 1632319524
}

请求详情设置:


请求参数设置:

参数名 参数值 操作


返回结果:

null

返回码表:

名称 类型 说明
code int 200-请求正常 | 500-请求错误
msg string SUCCESS-请求正常 | ERROR-请求错误
data -> info/tips string 描述当前请求信息(如果存在)

代码示例:

<?php
//服务器地址
$host = "cloud.rapda.top";
//服务器端口
$port="19132";

//拼接url
$url = "https://api.vore.top/api/MCServer?host=".$host."&port=".$port;
//请求数据并解码
$result = file_get_contents($url);

//输出服务器信息
echo $result;
?>
当前文档浏览次数: