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

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

text
https://api.gamemonitoring.in/servers/5616364
json
{
  "response": {
    "fps": 40,
    "fps_avg": 39,
    "entities_count": 186125,
    "world_seed": 864329006,
    "world_size": 4255,
    "steam_id": "90284183010060303",
    "domain": null,
    "id": 5616364,
    "ip": "185.248.134.83",
    "port": 28010,
    "query": 28015,
    "color": 0,
    "city": "Dallas",
    "description": "![Rusticated.com - US Main](https://cdn.rusticated.com/u/dfa2d63218-banner_512x256.png)\nThursday weekly wipes, Blueprints wipe every Month\r\nBuy SkipQueue at: www.rusticated.com/vip\r\nDiscord: www.rusticated.com/discord\r\n\r\nPlease follow the rules below: \r\n- English in chat \r\n- No Racism, Homophobia, Harassment or Excessive Toxicity \r\n- No Advertising \r\n- Any form of cheats / hacking is not allowed \r\n- Staff have final say, being toxic to staff will get you automatically removed \r\n- Any association with a gamebanned rust account or playing with a user with a old gamebanned rust account will cause you to be banned",
    "game": 252490,
    "owner": null,
    "boosts": 1,
    "last_offline": 1775157132,
    "score": 0,
    "last_online": 1775893811,
    "icon": null,
    "name": "Rusticated.com - US Main",
    "connect": "185.248.134.83:28010",
    "request": "185.248.134.83:28015",
    "map": "Rusticated Generated Maps",
    "gamemode": "Survival",
    "version": "2623",
    "numplayers": 87,
    "maxplayers": 150,
    "bots": 0,
    "secured": true,
    "private": false,
    "country": "US",
    "status": true,
    "votes": 0,
    "points": 94,
    "add_date": 1723694959,
    "last_update": 1775893811,
    "banned": false,
    "wipe": 1775761004,
    "official": null,
    "wipe_period": null,
    "next_wipe": null,
    "pve": 0,
    "pvp": null,
    "list_hidden": false,
    "hide_address": false,
    "hide_query": false,
    "position_game": 243,
    "language": "en",
    "parked": false,
    "app": {
      "id": 12,
      "steam_id": 252490,
      "name": "Rust",
      "url": "rust"
    },
    "server_owner": null,
    "mods": [],
    "disabled_modules": []
  }
}

कोड उदाहरण

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