Core Keeper
API für NewWorld
Wir bieten eine breite Auswahl an Integrationsmethoden. Sie können eine davon verwenden oder Ihre eigene mit der JSON-API erstellen. Wenn Sie einen Vorschlag für eine neue Integrationsmethode haben, kontaktieren Sie uns bitte. Kontaktieren Sie uns
JSON für Programme, Websites und mehr
text
https://api.gamemonitoring.de/servers/9315536json
{
"response": {
"steam_id": "90284128177068063",
"domain": null,
"id": 9315536,
"ip": "83.223.207.153",
"port": 37100,
"query": 37101,
"color": 0,
"city": "Dallas",
"description": null,
"game": 1621690,
"owner": null,
"boosts": 1,
"last_offline": 1775725925,
"score": 0,
"last_online": 1775931069,
"icon": null,
"name": "NewWorld",
"connect": "83.223.207.153:37100",
"request": "83.223.207.153:37101",
"map": null,
"gamemode": "Core Keeper",
"version": "1.2.0.7-28a3",
"numplayers": 0,
"maxplayers": 8,
"bots": 0,
"secured": false,
"private": false,
"country": "US",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1747708939,
"last_update": 1775931069,
"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": 70,
"language": "en",
"parked": false,
"app": {
"id": 1560042,
"steam_id": 1621690,
"name": "Core Keeper",
"url": "core-keeper"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Codebeispiele
php
<?php
$json = file_get_contents("https://api.gamemonitoring.de/servers/9315536");
$data = json_decode($json, true);
var_dump($data);