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

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

text
https://api.gamemonitoring.in/servers/11435526
json
{
  "response": {
    "fps": 60,
    "fps_avg": 59,
    "entities_count": 852,
    "world_seed": 1337,
    "world_size": 1000,
    "steam_id": "90283883046332427",
    "domain": null,
    "id": 11435526,
    "ip": "66.51.97.52",
    "port": 28005,
    "query": 28006,
    "color": 0,
    "city": "City of London",
    "description": "![Peak OffWipe [EU]](https://i.postimg.cc/yWq1QW2n/Offwipe-Thumbnail.png)\n- Maze, Roams, ShopFronts\r\n- Kits\r\n- Frequent Updates\r\n- Custom Optimisation\r\n- 24/7 Support\r\n\r\nServer Is Currently Under Development - Join For Updates:\r\n.gg/YVSsJmxSS9",
    "game": 252490,
    "owner": null,
    "boosts": 1,
    "last_offline": 1775239335,
    "score": 0,
    "last_online": 1775683815,
    "icon": null,
    "name": "Peak OffWipe [EU]",
    "connect": "66.51.97.52:28005",
    "request": "66.51.97.52:28006",
    "map": "Custom Map",
    "gamemode": "Survival",
    "version": "2623",
    "numplayers": 3,
    "maxplayers": 50,
    "bots": 0,
    "secured": true,
    "private": false,
    "country": "GB",
    "status": true,
    "votes": 0,
    "points": 62,
    "add_date": 1774977193,
    "last_update": 1775683815,
    "banned": false,
    "wipe": 1775220352,
    "official": null,
    "wipe_period": null,
    "next_wipe": null,
    "pve": 0,
    "pvp": null,
    "list_hidden": false,
    "hide_address": false,
    "hide_query": false,
    "position_game": 2026,
    "language": "en",
    "parked": false,
    "app": {
      "id": 12,
      "steam_id": 252490,
      "name": "Rust",
      "url": "rust",
      "popular_maps_available": false
    },
    "server_owner": null,
    "mods": [],
    "disabled_modules": []
  }
}

कोड उदाहरण

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