API для Counter-Strike 1.6
JSON для программ, сайтов и прочего
text
json
{
"response": {
"os": "l",
"region": -1,
"product": "cstrike",
"gametype": null,
"dedicated": true,
"steam_id": "90292972656838669",
"domain": null,
"id": 16462282,
"ip": "98.128.229.76",
"port": 27015,
"query": 27015,
"project_id": null,
"color": 0,
"city": "Стокгольм",
"description": null,
"game": 10,
"boosts": 1,
"last_offline": 1789735365,
"last_online": 1789744890,
"icon": null,
"name": "Counter-Strike 1.6",
"connect": "98.128.229.76:27015",
"request": "98.128.229.76:27015",
"map": "kz_satomi",
"gamemode": null,
"version": "1.1.2.7/Stdio",
"numplayers": 0,
"maxplayers": 32,
"bots": 0,
"secured": true,
"private": null,
"country": "SE",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1789481808,
"last_update": 1789744890,
"ban_reason": null,
"banned": false,
"hidden": 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": 10246,
"language": null,
"parked": false,
"app": {
"id": 3,
"steam_id": 10,
"name": "Counter-Strike",
"url": "counter-strike"
},
"mods": [],
"disabled_modules": [],
"map_url": null
}
}Примеры кода
php
<?php
$json = file_get_contents("https://api.gamemonitoring.ru/servers/16462282");
$data = json_decode($json, true);
var_dump($data);