Hytale Server Status Query

Want to test if your server is online? Enter the address below and we will query the server!

0 QUERYS SERVED

Verificar servidor
Using the API

Use the following URL to get the status of a server: https://mcstatus.snowdev.com.br/api/hytale/query/<address>

The result is rendered in application/json and is currently cached for 30 seconds.

If an address works in Hytale, it works with this API. If you do not specify a port, the API will find it.

Examples

JavaScript (jQuery)

$.ajax({
    type: 'GET',
    url: 'https://mcstatus.snowdev.com.br/api/hytale/query/{ServerAddress}',
}).done(function(response){
    console.log('Server it is ' + ((response.online) ? 'Online' : 'Offline') + '!');
});

PHP

<?php
$json = json_decode(file_get_contents('https://mcstatus.snowdev.com.br/api/hytale/query/{ServerAddress}'));

echo 'Server it is ' . (($json->online) ? 'Online' : 'Offline') . '!';
?>
Problem?

If you have any problems, please report it via email: [email protected]

If you prefer, please contact us by our discord: https://discord.snowdev.com.br