API для Local Test Server
JSON для программ, сайтов и прочего
text
json
{
"response": {
"fps": 176,
"fps_avg": 173,
"map_url": "procedural_map_4000_seed_12345_r287",
"map_kind": "procedural",
"map_name": "Procedural Map",
"map_seed": 12345,
"map_size": 4000,
"map_revision": 287,
"entities_count": 91417,
"steam_id": "90291333010263054",
"domain": null,
"id": 13671772,
"ip": "212.154.166.231",
"port": 28015,
"query": 28016,
"project_id": null,
"color": 0,
"city": "Almaty",
"description": null,
"game": 252490,
"owner": null,
"boosts": 1,
"last_offline": 1787553062,
"last_online": 1787311889,
"icon": null,
"name": "Local Test Server",
"connect": "212.154.166.231:28015",
"request": "212.154.166.231:28016",
"map": "Procedural Map",
"gamemode": "Survival",
"version": "2632",
"numplayers": 0,
"maxplayers": 10,
"bots": 0,
"secured": true,
"private": false,
"country": "KZ",
"status": false,
"votes": 0,
"points": 0,
"add_date": 1786528411,
"last_update": 1787553062,
"ban_reason": null,
"banned": false,
"wipe": 1786114558,
"official": null,
"wipe_period": null,
"next_wipe": null,
"pve": 0,
"pvp": null,
"list_hidden": false,
"hide_address": false,
"hide_query": false,
"position_game": 15389,
"language": "kk",
"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.ru/servers/13671772");
$data = json_decode($json, true);
var_dump($data);