API for rain
JSON for programs, websites and more
text
json
{
"response": {
"steam_id": "90286174949783569",
"domain": null,
"id": 11602599,
"ip": "78.150.43.12",
"port": 7777,
"query": 27015,
"color": 0,
"city": "Wolverhampton",
"description": null,
"game": 480,
"owner": null,
"boosts": 1,
"last_offline": 1779686559,
"last_online": 1779656449,
"icon": null,
"name": "rain",
"connect": "78.150.43.12:7777",
"request": "78.150.43.12:27015",
"map": "MP_Foundation",
"gamemode": "Gears of War 3",
"version": "1.0.0.0",
"numplayers": 0,
"maxplayers": 5,
"bots": 0,
"secured": false,
"private": false,
"country": "GB",
"status": false,
"votes": 0,
"points": 0,
"add_date": 1779359422,
"last_update": 1779686559,
"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": 33,
"language": "en",
"parked": false,
"app": {
"id": 54694,
"steam_id": 480,
"name": "Spacewar",
"url": "spacewar"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Code examples
php
<?php
$json = file_get_contents("https://api.gamemonitoring.net/servers/11602599");
$data = json_decode($json, true);
var_dump($data);