面向程序、网站等的 JSON

text
https://api.gamemonitoring.cn/servers/11677625
json
{
  "response": {
    "fps": 134,
    "fps_avg": 129,
    "entities_count": 124843,
    "world_seed": 1337,
    "world_size": 4500,
    "steam_id": "90286592936178709",
    "domain": null,
    "id": 11677625,
    "ip": "51.161.209.10",
    "port": 25572,
    "query": 25574,
    "color": 0,
    "city": "North Sydney",
    "description": "![Rusting Away Down Under | PvE 2x | Zombies & Events](https://i.postimg.cc/527vLwYC/image-2026-04-25T122033-387-(1).png)\nRusting Away Down Under.\r\n🔥 RUSTING AWAY IN AUSTRALIA 🔥 🧟 PvE ZOMBIES | EVENTS | QUESTS | BACKPACKS 🧟 🚀 The Ultimate PvE Experience Has Arrived No wipes wasted. No toxic PvP. Just pure progression, action, and survival.\r\n⚡ WHY PLAY HERE? ✔️ Custom Rates – Skip the boring grind ✔️ Zombies Everywhere – The map is NEVER safe ✔️ Constant Events – Always something happening ✔️ Quests System – Earn rewards & progress faster ✔️ Backpacks – Loot more, lose less ✔️ Lag-Free AU Hosting – Smooth gameplay",
    "game": 252490,
    "owner": null,
    "boosts": 1,
    "last_offline": 1780628601,
    "last_online": 1780593636,
    "icon": null,
    "name": "Rusting Away Down Under | PvE 2x | Zombies & Events",
    "connect": "51.161.209.10:25572",
    "request": "51.161.209.10:25574",
    "map": "Custom Map",
    "gamemode": "Survival",
    "version": "2625",
    "numplayers": 0,
    "maxplayers": 40,
    "bots": 0,
    "secured": true,
    "private": false,
    "country": "AU",
    "status": false,
    "votes": 0,
    "points": 0,
    "add_date": 1780216217,
    "last_update": 1780628601,
    "banned": false,
    "wipe": 1778177373,
    "official": null,
    "wipe_period": null,
    "next_wipe": null,
    "pve": 0,
    "pvp": null,
    "list_hidden": false,
    "hide_address": false,
    "hide_query": false,
    "position_game": 12446,
    "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/11677625");
$data = json_decode($json, true);
var_dump($data);