Where The Wild Things Are 的 API
面向程序、网站等的 JSON
text
json
{
"response": {
"steam_id": "90286585132609543",
"domain": null,
"id": 724694,
"ip": "104.192.227.42",
"port": 27033,
"query": 27033,
"project_id": null,
"color": 0,
"city": "Chicago",
"description": "",
"game": 346110,
"owner": null,
"boosts": 1,
"last_offline": 1780559062,
"last_online": 1781306461,
"icon": null,
"name": "Where The Wild Things Are",
"connect": "104.192.227.42:27033",
"request": "104.192.227.42:27033",
"map": "Ragnarok",
"gamemode": "GameMode_DeathRecovery_C",
"version": "288.113",
"numplayers": 0,
"maxplayers": 30,
"bots": 0,
"secured": true,
"private": true,
"country": "US",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1672180399,
"last_update": 1781306461,
"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": 3045,
"language": "en",
"parked": false,
"app": {
"id": 67,
"steam_id": 346110,
"name": "ARK: Survival Evolved",
"url": "ark-survival-evolved"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}代码示例
php
<?php
$json = file_get_contents("https://api.gamemonitoring.cn/servers/724694");
$data = json_decode($json, true);
var_dump($data);