We offer a wide range of integration methods. You can use any of them or create your own using the JSON API. If you have a suggestion to add a new integration method, please contact us. Connect with us
JSON for programs, websites and more
text
https://api.gamemonitoring.net/servers/7321445
json
{
"response": {
"id": 7321445,
"ip": "77.90.5.70",
"port": 27015,
"query": 27015,
"owner_name": null,
"owner_avatar": null,
"color": 0,
"description": null,
"game": 10,
"owner": null,
"boosts": 1,
"last_offline": 1742943244,
"score": 0,
"last_online": 1742917316,
"icon": null,
"name": "Test Server",
"connect": "77.90.5.70:27015",
"request": "77.90.5.70:27015",
"map": "awp_katkat",
"gamemode": "Zombie Escape v1.6",
"version": null,
"numplayers": 0,
"maxplayers": 32,
"bots": 0,
"secured": false,
"private": false,
"country": "DE",
"status": false,
"votes": 0,
"points": 0,
"add_date": 1736858213,
"last_update": 1742943244,
"banned": false,
"wipe": null,
"official": null,
"wipe_period": null,
"next_wipe": null,
"pve": null,
"list_hidden": false,
"app": {
"id": 3,
"steam_id": 10,
"name": "Counter-Strike",
"url": "counter-strike",
"popular_maps_available": true
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}
Code examples
php
<?php
$json = file_get_contents("https://api.gamemonitoring.net/servers/7321445");
$data = json_decode($json, true);
var_dump($data);