API для Rust Party #1 Vanilla
JSON для программ, сайтов и прочего
text
json
{
"response": {
"fps": 201,
"fps_avg": 199,
"entities_count": 142829,
"world_seed": 109042026,
"world_size": 5000,
"steam_id": "90286575429525505",
"domain": null,
"id": 11744554,
"ip": "188.143.221.41",
"port": 28015,
"query": 28016,
"color": 0,
"city": "St Petersburg",
"description": "\nLighthouse, Cave, Radtown, Waterwell, Warehouse, Sphere Tank, Satellite Dish, Town, Compound, Airport, Water Treatment Plant, Power Plant, Military Tunnel, Trainyard, Launch Site, Harbor",
"game": 252490,
"owner": null,
"boosts": 1,
"last_offline": 1780518704,
"last_online": 1780569035,
"icon": null,
"name": "Rust Party #1 Vanilla",
"connect": "188.143.221.41:28015",
"request": "188.143.221.41:28016",
"map": "Procedural Map",
"gamemode": "Vanilla",
"version": "2623",
"numplayers": 0,
"maxplayers": 250,
"bots": 0,
"secured": true,
"private": false,
"country": "RU",
"status": true,
"votes": 0,
"points": 60,
"add_date": 1780518704,
"last_update": 1780569035,
"banned": false,
"wipe": 1775738888,
"official": null,
"wipe_period": null,
"next_wipe": null,
"pve": 0,
"pvp": null,
"list_hidden": false,
"hide_address": false,
"hide_query": false,
"position_game": 6057,
"language": "ru",
"parked": false,
"app": {
"id": 12,
"steam_id": 252490,
"name": "Rust",
"url": "rust"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Примеры кода
php
<?php
$json = file_get_contents("https://api.gamemonitoring.ru/servers/11744554");
$data = json_decode($json, true);
var_dump($data);