हम एकीकरण विधियों की एक विस्तृत श्रृंखला प्रदान करते हैं। आप उनमें से किसी का भी उपयोग कर सकते हैं या JSON API का उपयोग करके अपना खुद का बना सकते हैं। यदि आपके पास नई एकीकरण विधि जोड़ने का सुझाव है, तो कृपया हमसे संपर्क करें। हमसे संपर्क करें

प्रोग्राम, वेबसाइट और अन्य के लिए JSON

text
https://api.gamemonitoring.in/servers/9647454
json
{
  "response": {
    "steam_id": "90279752719620101",
    "domain": null,
    "id": 9647454,
    "ip": "135.148.150.111",
    "port": 60414,
    "query": 60416,
    "color": 0,
    "city": "Warrenton",
    "description": "Welcome to Fractal Rust\r\n- 1.5x loot\r\n- NO PAY TO WIN\r\n- 4 max team\r\n- Tier 1 BPs unlocked\r\n- Merged outpost\r\n- Shorter nights\r\n- Active staff\r\n\r\nhttps://discord.gg/XXRDDCf54B",
    "game": 346110,
    "owner": null,
    "boosts": 1,
    "last_offline": 1768641905,
    "score": 0,
    "last_online": 1775753415,
    "icon": null,
    "name": "A Cybrancee Hosted ARK Server",
    "connect": "135.148.150.111:60414",
    "request": "135.148.150.111:60416",
    "map": "CrystalIsles",
    "gamemode": "TestGameMode_C",
    "version": "358.24",
    "numplayers": 1,
    "maxplayers": 12,
    "bots": 0,
    "secured": true,
    "private": false,
    "country": "US",
    "status": true,
    "votes": 0,
    "points": 64,
    "add_date": 1751369600,
    "last_update": 1775753415,
    "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": 192,
    "language": "en",
    "parked": false,
    "app": {
      "id": 67,
      "steam_id": 346110,
      "name": "ARK: Survival Evolved",
      "url": "ark-survival-evolved"
    },
    "server_owner": null,
    "mods": [],
    "disabled_modules": []
  }
}

कोड उदाहरण

php
<?php
$json = file_get_contents("https://api.gamemonitoring.in/servers/9647454");
$data = json_decode($json, true);
var_dump($data);