RustGalaxy Nexus New York 的 API
面向程序、网站等的 JSON
text
json
{
"response": {
"fps": 30,
"fps_avg": 30,
"entities_count": 103789,
"world_seed": 15196370,
"world_size": 4250,
"steam_id": "90286552899036177",
"domain": null,
"id": 9527951,
"ip": "134.195.90.89",
"port": 28015,
"query": 28017,
"color": 0,
"city": "New York",
"description": "\nRustGalaxy: The Original Nexus Network! Dial any of our 17 global servers via the Outpost telephone and seamlessly transfer with your inventory. Facepunch promised it, we delivered. No lag, no cheaters. Just pure survival across continents.\r\n\r\nMonthly map and blueprint wipes.",
"game": 252490,
"owner": null,
"boosts": 1,
"last_offline": 1780482840,
"last_online": 1780567233,
"icon": null,
"name": "RustGalaxy Nexus New York",
"connect": "134.195.90.89:28015",
"request": "134.195.90.89:28017",
"map": "Procedural Map",
"gamemode": "Survival",
"version": "2625",
"numplayers": 0,
"maxplayers": 50,
"bots": 0,
"secured": true,
"private": false,
"country": "US",
"status": true,
"votes": 0,
"points": 60,
"add_date": 1750537983,
"last_update": 1780567233,
"banned": false,
"wipe": 1778176469,
"official": null,
"wipe_period": null,
"next_wipe": null,
"pve": 0,
"pvp": null,
"list_hidden": false,
"hide_address": false,
"hide_query": false,
"position_game": 3169,
"language": "en",
"parked": false,
"app": {
"id": 12,
"steam_id": 252490,
"name": "Rust",
"url": "rust"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}代码示例
php
<?php
$json = file_get_contents("https://api.gamemonitoring.cn/servers/9527951");
$data = json_decode($json, true);
var_dump($data);