Space News Economy 的 API
面向程序、网站等的 JSON
text
json
{
"response": {
"steam_id": "90286229843787795",
"domain": null,
"id": 11546011,
"ip": "186.232.212.27",
"port": 27016,
"query": 27016,
"color": 0,
"city": "Senador Firmino",
"description": null,
"game": 244850,
"owner": null,
"boosts": 1,
"last_offline": 1779781403,
"last_online": 1779863458,
"icon": null,
"name": "Space News Economy",
"connect": "186.232.212.27:27016",
"request": "186.232.212.27:27016",
"map": "Space News Economy",
"gamemode": "Space Engineers",
"version": "1209024",
"numplayers": 0,
"maxplayers": 18,
"bots": 0,
"secured": true,
"private": false,
"country": "BR",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1779355588,
"last_update": 1779863458,
"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": 2346,
"language": "pt",
"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/11546011");
$data = json_decode($json, true);
var_dump($data);