V Rising
API für Midnight Snack Run
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/8851385json
{
"response": {
"steam_id": "90284130154700814",
"domain": null,
"id": 8851385,
"ip": "66.94.115.66",
"port": 30500,
"query": 30515,
"color": 0,
"city": "Seattle",
"description": null,
"game": 1604030,
"owner": null,
"boosts": 1,
"last_offline": 1774697546,
"score": 0,
"last_online": 1775789475,
"icon": null,
"name": "Midnight Snack Run",
"connect": "66.94.115.66:30500",
"request": "66.94.115.66:30515",
"map": "VRisingWorld",
"gamemode": "3633219e-1c0d-4e09-89ad-a8c42a1b88f1",
"version": "0.0.0.1",
"numplayers": 0,
"maxplayers": 10,
"bots": 0,
"secured": true,
"private": true,
"country": "US",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1746274237,
"last_update": 1775789475,
"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": 558,
"language": "en",
"parked": false,
"app": {
"id": 55075,
"steam_id": 1604030,
"name": "V Rising",
"url": "v-rising"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Codebeispiele
php
<?php
$json = file_get_contents("https://api.gamemonitoring.de/servers/8851385");
$data = json_decode($json, true);
var_dump($data);