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/225890
json
{
  "response": {
    "steam_id": "85568392922430831",
    "domain": null,
    "id": 225890,
    "ip": "192.223.26.238",
    "port": 27019,
    "query": 27019,
    "color": 0,
    "city": "Chicago",
    "description": "",
    "game": 440,
    "owner": null,
    "boosts": 1,
    "last_offline": 1773901319,
    "score": null,
    "last_online": 1775926815,
    "icon": null,
    "name": "LazyPurple's MvM Server #1 (20 Mann)",
    "connect": "192.223.26.238:27019",
    "request": "192.223.26.238:27019",
    "map": "mvm_sequoia_rc8_exp_forest_cata",
    "gamemode": "Team Fortress",
    "version": "10515055",
    "numplayers": 23,
    "maxplayers": 25,
    "bots": 0,
    "secured": true,
    "private": false,
    "country": "US",
    "status": true,
    "votes": 0,
    "points": 74,
    "add_date": 1582979131,
    "last_update": 1775926815,
    "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": 65,
    "language": "en",
    "parked": false,
    "app": {
      "id": 24,
      "steam_id": 440,
      "name": "Team Fortress 2",
      "url": "team-fortress-2"
    },
    "server_owner": null,
    "mods": [],
    "disabled_modules": []
  }
}

Code examples

php
<?php
$json = file_get_contents("https://api.gamemonitoring.net/servers/225890");
$data = json_decode($json, true);
var_dump($data);