Project Zomboid
My PZ Server 的 API
我们提供多种集成方式。 你可以使用其中任意一种,也可以通过 JSON API 自行创建集成。 如果你希望我们新增其他集成方式,请联系我们。 联系我们
面向程序、网站等的 JSON
text
https://api.gamemonitoring.cn/servers/3886364json
{
"response": {
"steam_id": "90284093139571725",
"domain": null,
"id": 3886364,
"ip": "83.223.207.135",
"port": 29400,
"query": 29400,
"color": 0,
"city": "Dallas",
"description": "Private server",
"game": 108600,
"owner": null,
"boosts": 1,
"last_offline": 1775621005,
"score": 0,
"last_online": 1775680818,
"icon": null,
"name": "My PZ Server",
"connect": "83.223.207.135:29400",
"request": "83.223.207.135:29400",
"map": "Muldraugh, KY",
"gamemode": "Project Zomboid",
"version": "41.78.19",
"numplayers": 0,
"maxplayers": 16,
"bots": 0,
"secured": true,
"private": false,
"country": "US",
"status": true,
"votes": 0,
"points": 60,
"add_date": 1713384870,
"last_update": 1775680818,
"banned": false,
"wipe": null,
"official": null,
"wipe_period": null,
"next_wipe": null,
"pve": null,
"pvp": null,
"list_hidden": false,
"hide_address": false,
"hide_query": false,
"position_game": 287,
"language": "en",
"parked": false,
"app": {
"id": 71,
"steam_id": 108600,
"name": "Project Zomboid",
"url": "project-zomboid",
"popular_maps_available": false
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}代码示例
php
<?php
$json = file_get_contents("https://api.gamemonitoring.cn/servers/3886364");
$data = json_decode($json, true);
var_dump($data);