API для Counter-Strike
JSON для программ, сайтов и прочего
text
json
{
"response": {
"add_date": 1789932039,
"app": {
"id": 3,
"name": "Counter-Strike",
"steam_id": 10,
"url": "counter-strike"
},
"color": 0,
"connect": "92.208.252.183:27015",
"country": "DE",
"domain": null,
"game": 10,
"hide_address": false,
"hide_query": false,
"icon": null,
"id": 16812353,
"ip": "92.208.252.183",
"language": "de",
"last_update": 1790518262,
"map": "fy_iceworld2k",
"maxplayers": 11,
"name": "Counter-Strike",
"numplayers": 0,
"official": null,
"points": 0,
"port": 27015,
"private": null,
"project_id": null,
"pve": null,
"pvp": null,
"query": 27015,
"request": "92.208.252.183:27015",
"secured": false,
"status": false,
"steam_id": "90293109202664454",
"version": "1.1.2.7/Stdio",
"votes": 0,
"wipe": null,
"ban_reason": null,
"banned": false,
"boosts": 1,
"bots": 0,
"city": "Ландсхут",
"description": null,
"disabled_modules": [],
"gamemode": null,
"hidden": false,
"last_offline": 1790518262,
"last_online": 1789931066,
"list_hidden": false,
"map_url": null,
"mods": [],
"next_wipe": null,
"parked": false,
"position_game": 22969,
"wipe_period": null,
"os": "w",
"region": -1,
"product": "cstrike",
"gametype": null,
"dedicated": false
}
}Примеры кода
php
<?php
$json = file_get_contents("https://api.gamemonitoring.ru/servers/16812353");
$data = json_decode($json, true);
var_dump($data);