ARK: Survival Evolved
API for MESA Solos - Trading Outpost
We offer a wide range of integration methods. You can use any of them or create your own using the JSON API. If you have a suggestion to add a new integration method, please contact us. Contact us
JSON for programs, websites and more
text
https://api.gamemonitoring.net/servers/8180958json
{
"response": {
"steam_id": "90284112943693833",
"domain": null,
"id": 8180958,
"ip": "141.98.157.72",
"port": 7785,
"query": 27019,
"color": 0,
"city": "City of London",
"description": null,
"game": 346110,
"owner": null,
"boosts": 1,
"last_offline": 1775486566,
"score": 0,
"last_online": 1775763628,
"icon": null,
"name": "MESA Solos - Trading Outpost",
"connect": "141.98.157.72:7785",
"request": "141.98.157.72:27019",
"map": "MesaTradeOutpost",
"gamemode": "TestGameMode_C",
"version": "358.24",
"numplayers": 2,
"maxplayers": 70,
"bots": 0,
"secured": true,
"private": false,
"country": "GB",
"status": true,
"votes": 0,
"points": 32,
"add_date": 1742383010,
"last_update": 1775763628,
"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": 3482,
"language": "en",
"parked": false,
"app": {
"id": 67,
"steam_id": 346110,
"name": "ARK: Survival Evolved",
"url": "ark-survival-evolved"
},
"server_owner": null,
"mods": [],
"disabled_modules": []
}
}Code examples
php
<?php
$json = file_get_contents("https://api.gamemonitoring.net/servers/8180958");
$data = json_decode($json, true);
var_dump($data);