API for Not Another TDM Server
JSON for programs, websites and more
text
json
{
"response": {
"steam_id": 90286264786220050,
"domain": null,
"id": 11394785,
"ip": "198.244.225.115",
"port": 21914,
"query": 21916,
"color": 0,
"city": "London",
"description": null,
"game": 321360,
"owner": null,
"boosts": 1,
"last_offline": 1779381823,
"last_online": 1779871308,
"icon": null,
"name": "Not Another TDM Server",
"connect": "198.244.225.115:21914",
"request": "198.244.225.115:21916",
"map": "pc-transfer",
"gamemode": "PCTeamDeathMatchGame",
"version": "3.3.2",
"numplayers": 0,
"maxplayers": 32,
"bots": 0,
"secured": true,
"private": false,
"country": "GB",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1774597068,
"last_update": 1779871308,
"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": 18,
"language": "en",
"parked": false,
"app": {
"id": 4384,
"steam_id": 321360,
"name": "Primal Carnage: Extinction",
"url": "primal-carnage-extinction"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Code examples
php
<?php
$json = file_get_contents("https://api.gamemonitoring.net/servers/11394785");
$data = json_decode($json, true);
var_dump($data);