API для EXAMPLE NAME
JSON для программ, сайтов и прочего
text
json
{
"response": {
"add_date": 1789675681,
"app": {
"id": 54695,
"name": "DayZ Experimental",
"steam_id": 1024020,
"url": "dayz-experimental"
},
"color": 0,
"connect": "95.31.48.170:2302",
"country": "RU",
"domain": null,
"game": 1024020,
"hide_address": false,
"hide_query": false,
"icon": null,
"id": 16668934,
"ip": "95.31.48.170",
"language": "ru",
"last_update": 1789870040,
"map": "chernarusplus",
"maxplayers": 60,
"name": "EXAMPLE NAME",
"numplayers": 0,
"official": null,
"points": 0,
"port": 2302,
"private": null,
"project_id": null,
"pve": null,
"pvp": null,
"query": 27016,
"request": "95.31.48.170:27016",
"secured": true,
"status": false,
"steam_id": "90292942854881309",
"version": "1.30.164014",
"votes": 0,
"wipe": null,
"ban_reason": null,
"banned": false,
"boosts": 1,
"bots": 0,
"city": "Москва",
"description": null,
"disabled_modules": [],
"gamemode": null,
"hidden": false,
"last_offline": 1789870040,
"last_online": 1789676261,
"list_hidden": false,
"map_url": null,
"mods": [],
"next_wipe": null,
"parked": false,
"position_game": 529,
"wipe_period": null,
"os": "w",
"region": -1,
"product": "dayz",
"gametype": "battleye,no3rd,external,privHive,shard123ABC,lqs0,etm12.000000,entm1.000000,mod,08:00",
"dedicated": true
}
}Примеры кода
php
<?php
$json = file_get_contents("https://api.gamemonitoring.ru/servers/16668934");
$data = json_decode($json, true);
var_dump($data);