Counter-Strike 2
API für Vimo.lt [PUBLIC]
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/223892json
{
"response": {
"steam_id": "85568392936169851",
"domain": "cs.vimo.lt",
"id": 223892,
"ip": "91.211.247.234",
"port": 27015,
"query": 27015,
"color": 0,
"city": "Vilnius",
"description": "",
"game": 730,
"owner": null,
"boosts": 1,
"last_offline": 1775617404,
"score": null,
"last_online": 1775931026,
"icon": null,
"name": "Vimo.lt [PUBLIC]",
"connect": "cs.vimo.lt:27015",
"request": "91.211.247.234:27015",
"map": "de_inferno",
"gamemode": "Counter-Strike 2",
"version": "1.41.4.1",
"numplayers": 0,
"maxplayers": 32,
"bots": 0,
"secured": true,
"private": false,
"country": "LT",
"status": true,
"votes": 0,
"points": 30,
"add_date": 1582979098,
"last_update": 1775931026,
"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": 4973,
"language": "lt",
"parked": false,
"app": {
"id": 2,
"steam_id": 730,
"name": "Counter-Strike 2",
"url": "counter-strike-2"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Codebeispiele
php
<?php
$json = file_get_contents("https://api.gamemonitoring.de/servers/223892");
$data = json_decode($json, true);
var_dump($data);