S1 Docs

Documentation for the S1 tracker.

Status

The API used to get status information on some SSVC APIs and Gorilla Tag.

var response = await fetch('https://funnythin.org/api/s1/status', {
  method: 'GET',
  headers: {
    'token': 'evil',
  }
});
var text = await response.text();
console.log(text);

Expected response:

{
  "PlayersOnline":11204,
  "BannedLastDay":1809,
  "LastUpdated":1775224463488
}

PlayersOnline is the amount of players online in Gorilla Tag

BannedLastDay is the amount of Gorilla Tag players banned in the last day

LastUpdated is the unix time stamp in milliseconds for the last update of PlayersOnline and BannedLastDay. As S1 and S3 share the same hosting this can be used to check the status of both.

SSVC Docs