E4M Server için API
Programlar, siteler ve diğerleri için JSON
text
json
{
"response": {
"steam_id": "90286982381045765",
"domain": null,
"id": 11795838,
"ip": "31.214.134.149",
"port": 10170,
"query": 10171,
"project_id": null,
"color": 0,
"city": "Miami",
"description": null,
"game": 1857950,
"owner": null,
"boosts": 1,
"last_offline": 1781378736,
"last_online": 1781406691,
"icon": null,
"name": "E4M Server",
"connect": "31.214.134.149:10170",
"request": "31.214.134.149:10171",
"map": "Champlain Valley",
"gamemode": "VEIN",
"version": "0.024h1",
"numplayers": 0,
"maxplayers": 14,
"bots": 0,
"secured": false,
"private": true,
"country": "US",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1781378736,
"last_update": 1781406691,
"banned": 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": 1243,
"language": "en",
"parked": false,
"app": {
"id": 1530675,
"steam_id": 1857950,
"name": "VEIN",
"url": "vein"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Kod örnekleri
php
<?php
$json = file_get_contents("https://api.gamemonitoring.tr/servers/11795838");
$data = json_decode($json, true);
var_dump($data);