Arma 3
Event Server के लिए API
प्रोग्राम, वेबसाइट और अन्य के लिए JSON
text
https://api.gamemonitoring.in/servers/4341616json
{
"response": {
"steam_id": 90284417482567710,
"domain": null,
"id": 4341616,
"ip": "198.244.202.225",
"port": 2322,
"query": 2323,
"color": 0,
"city": "London",
"description": "",
"game": 107410,
"owner": null,
"boosts": 1,
"last_offline": 1776811953,
"score": 0,
"last_online": 1776622911,
"icon": null,
"name": "Event Server",
"connect": "198.244.202.225:2322",
"request": "198.244.202.225:2323",
"map": "Deniland",
"gamemode": "Operation_Red_Dagger_V1_1",
"version": "2.20.153495",
"numplayers": 0,
"maxplayers": 100,
"bots": 0,
"secured": false,
"private": true,
"country": "GB",
"status": false,
"votes": 0,
"points": 0,
"add_date": 1716053671,
"last_update": 1776811953,
"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": 3391,
"language": "en",
"parked": false,
"app": {
"id": 61,
"steam_id": 107410,
"name": "Arma 3",
"url": "arma-3"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}कोड उदाहरण
php
<?php
$json = file_get_contents("https://api.gamemonitoring.in/servers/4341616");
$data = json_decode($json, true);
var_dump($data);