Counter-Strike
API for ENJOY.LEAGUECS.RO | LCS ROMANIA
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. Contact us
JSON for programs, websites and more
text
https://api.gamemonitoring.net/servers/9610595json
{
"response": {
"steam_id": null,
"domain": null,
"id": 9610595,
"ip": "135.125.173.213",
"port": 27015,
"query": 27015,
"color": 0,
"city": "Roubaix",
"description": null,
"game": 10,
"owner": null,
"boosts": 1,
"last_offline": 1769967105,
"score": 0,
"last_online": 1775705420,
"icon": null,
"name": "ENJOY.LEAGUECS.RO | LCS ROMANIA",
"connect": "135.125.173.213:27015",
"request": "135.125.173.213:27015",
"map": "de_dust2",
"gamemode": "VIP FREE",
"version": "1.1.2.7/Stdio",
"numplayers": 2,
"maxplayers": 32,
"bots": 2,
"secured": true,
"private": false,
"country": "FR",
"status": true,
"votes": 0,
"points": 34,
"add_date": 1750714993,
"last_update": 1775705420,
"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": 3141,
"language": "fr",
"parked": 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/9610595");
$data = json_decode($json, true);
var_dump($data);