API для Counter-Strike Source
JSON для программ, сайтов и прочего
text
json
{
"response": {
"add_date": 1789920101,
"app": {
"id": 5,
"name": "Counter-Strike: Source",
"steam_id": 240,
"url": "counter-strike-source"
},
"color": 0,
"connect": "95.32.193.17:27015",
"country": "RU",
"domain": null,
"game": 240,
"hide_address": false,
"hide_query": false,
"icon": null,
"id": 16806463,
"ip": "95.32.193.17",
"language": "ru",
"last_update": 1789938072,
"map": "cs_assault",
"maxplayers": 32,
"name": "Counter-Strike Source",
"numplayers": 0,
"official": null,
"points": 32,
"port": 27015,
"private": null,
"project_id": null,
"pve": null,
"pvp": null,
"query": 27015,
"request": "95.32.193.17:27015",
"secured": false,
"status": false,
"steam_id": "90293102655650817",
"version": "1.0.0.74",
"votes": 0,
"wipe": null,
"ban_reason": null,
"banned": false,
"boosts": 1,
"bots": 0,
"city": "Воронеж",
"description": null,
"disabled_modules": [],
"gamemode": null,
"hidden": false,
"last_offline": 1789938072,
"last_online": 1789921134,
"list_hidden": false,
"map_url": null,
"mods": [],
"next_wipe": null,
"parked": false,
"position_game": 619,
"wipe_period": null,
"os": "w",
"region": -1,
"product": "cstrike",
"gametype": "bots,friendlyfire,startmoney",
"dedicated": false
}
}Примеры кода
php
<?php
$json = file_get_contents("https://api.gamemonitoring.ru/servers/16806463");
$data = json_decode($json, true);
var_dump($data);