Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 536 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 536 Bytes

Internal Game Server Status API

This API is designed for internal use to check the status of various game servers.

Supported Games

  1. Minecraft
  2. Ragnarok Online

Endpoints

GET /status

Query Parameters:

  • games: Integer value representing the game server to check
    • 0: Minecraft
    • 1: Ragnarok Online

Response :

Offline:

{
   "online": false,
   "server_status": "Offline!"
}

Online:

{
   "online": true,
   "players": {
       "online": 6
   },
   "server_status": "Online!"
}