Space Engineers
juttuDATA 的 API
面向程序、网站等的 JSON
text
https://api.gamemonitoring.cn/servers/11167701json
{
"response": {
"steam_id": "85568392935577061",
"domain": null,
"id": 11167701,
"ip": "88.114.125.188",
"port": 27016,
"query": 27016,
"color": 0,
"city": "Raahe",
"description": null,
"game": 244850,
"owner": null,
"boosts": 1,
"last_offline": 1776841952,
"score": 0,
"last_online": 1776457920,
"icon": null,
"name": "juttuDATA",
"connect": "88.114.125.188:27016",
"request": "88.114.125.188:27016",
"map": "pwnhub",
"gamemode": "Space Engineers",
"version": "1208015",
"numplayers": 0,
"maxplayers": 4,
"bots": 0,
"secured": true,
"private": false,
"country": "FI",
"status": false,
"votes": 0,
"points": 0,
"add_date": 1772228670,
"last_update": 1776841952,
"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": 2620,
"language": "fi",
"parked": false,
"app": {
"id": 97,
"steam_id": 244850,
"name": "Space Engineers",
"url": "space-engineers"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}代码示例
php
<?php
$json = file_get_contents("https://api.gamemonitoring.cn/servers/11167701");
$data = json_decode($json, true);
var_dump($data);